Add trivial entry points to various tests
[hiphop-php.git] / hphp / test / quick / redecl_abstract_method2.php
blobf3eb45407c02bbd5a4d7ab123e44cd366e6daa49
1 <?hh
3 class B {
4 function foo() {}
7 abstract class C extends B {
8 abstract function foo();
11 <<__EntryPoint>>
12 function main(): void {
13 echo "Done.\n";