<?php

abstract class test {
    abstract private function foo() {
    }
}

echo "Done\n";
?>