Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / naming_ok_test12.php
blob83dba349222d75df384362ead726852843897208
1 <?hh // strict
3 const string X = '';
5 class X {}
7 function X(string $x): void {}
9 function test(): void {
10 X(X);
11 new X();