Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / use_namespace.php
blob6c9d88a796d073a57ea2775e84cf63445fa12138
1 <?hh // strict
3 namespace herp {
4 class derp {}
7 namespace herp\derp {
8 function foo(): void {}
11 namespace {
12 use namespace herp\derp;
14 function main(): void {
15 derp\foo();
16 new derp();