<?php

abstract class test {
}

class Impl extends Test {
    function Foo();
}

echo "Done\n";
?>