Updating submodules
[hiphop-php.git] / hphp / test / slow / type_constant3.php
blob67950ea62e1daf943eab46e9d252c713aca0912a
1 <?hh
3 trait T1 {
4 abstract const type T = int;
7 interface I {
8 const type T = string;
11 class C implements I {
12 use T1;
15 <<__EntryPoint>>
16 function main() {
17 var_dump(type_structure(C::class, 'T'));