Handle class names that collide with builtins
[hiphop-php.git] / hphp / hack / test / typecheck / tconst / cannot_override_tconst.php
blobd80a8d39ef4a111ab515f03d9412592c8bb102c5
1 <?hh // strict
3 class ParentClass {
4 const type ID = arraykey;
7 class Child extends ParentClass {
8 const type ID = int;