No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / const_in_interface_overridden1_bad.php
blobe77f49d4e62e45c8b6abca1a5a9d55cf94c0d954
1 <?hh
3 interface I {
4 const int SOME_CONST = 1;
6 abstract class C implements I {
7 const int SOME_CONST = 2;