No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / multiple_concrete_consts2.php
blob4b463ec2e392f683e3cdb1487157a5276a5cecc5
1 <?hh // partial
2 interface I1 {
3 abstract const int X;
5 interface I2 {
6 const int X = 5;
8 interface I extends I1, I2 {}