New inference: improved error message for unresolved type
[hiphop-php.git] / hphp / hack / test / typecheck / noreturn_typehint_basic.php
bloba8afc86145523b0c3a357e6c8e9776673f561a62
1 <?hh // strict
3 function correct(): noreturn {
4 throw new Exception('not returning here');
7 async function meh(): Awaitable<int> {
8 // UNSAFE
11 async function generic(): Awaitable<noreturn> {
12 await meh();
13 throw new Exception('not returning here');