Add trivial entry points to various tests
[hiphop-php.git] / hphp / test / slow / inout / bad-parent-1.php
blob325570ab8e926f4294dd6b69b32da1199d1ba142
1 <?hh
3 class P {
4 function foo(inout $x) {}
7 class C extends P {
8 function foo($x) {}
11 <<__EntryPoint>>
12 function main(): void {
13 echo "Done.\n";