Add switch to disable partially abstract type constants
[hiphop-php.git] / hphp / hack / test / typecheck / abstract_typeconsts / disable_patcs / concrete.php
blob1faa176585dedb4ebe40719dd1fd29ae2a85cc6a
1 <?hh // strict
3 class C {
4 const type T = arraykey;
7 class D extends C {
8 const type T as mixed = int;