Add trivial entry points to various tests
[hiphop-php.git] / hphp / test / quick / yield_final.php
blob37b560f354b0da71ec32be39aa1b1bb84978e17e
1 <?hh
2 trait C { final function method1() { yield 1; } }
3 class A { use C; }
4 class B extends A { use C; }
6 <<__EntryPoint>>
7 function main(): void {
8 echo "Done.\n";