Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / test_consts9.php
blobe0ea9e2d1a868565b2ebab2667428519d2ce733c
1 <?hh
3 abstract class C1 {
4 abstract const int X;
6 function test_polymorphism(C1 $inst): string {
7 return $inst::X;