Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / noreturn_usage_3.php
bloba41b68ab1aa950faa871dddef1037cb75e0b8ff3
1 <?hh // strict
3 function n(): noreturn {
4 throw new Exception('nope');
7 function test(): void {
8 while (n()) {