Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / yield_return4.php
blob188e04baf7913284966bbde2b76d0820a7797b31
1 <?hh // partial
3 async function f(): AsyncGenerator<?int, int, void> {
4 while (true) {
5 yield 1;
6 return 'hi';