make `Switch` constructor more precise
[hiphop-php.git] / hphp / test / slow / type_constant.php
blob57e9412315d58ad060eb760353200645e8d656d5
1 <?hh
3 trait T1 {
4 const type T = string;
7 class C {
8 use T1;
11 <<__EntryPoint>>
12 function main() {
13 var_dump(type_structure(C::class, 'T'));