Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / noreturn_usage.php
blobc7b125b2d7937773ba5aa0af2db2d03e4de5a6f0
1 <?hh // strict
3 function n(): noreturn {
4 throw new Exception('nope');
7 function v(): void {}
9 function test(): void {
10 list($x, $y) = tuple(n(), v());