global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / yield_final.php
blob835c94227b2755127fc68e262fb08364c8320533
1 <?hh
2 trait C { final function method1() { yield 1; } }
3 class A { use C; }
4 class B extends A { use C; }