Move io_tests to folly/io/async/test
[hiphop-php.git] / hphp / hack / test / typecheck / multiple_concrete_consts2.php
blob7c4ebb9b78930d7e96d75f4917bac3e90197b1cf
1 <?hh
2 interface I1 {
3 abstract const int X;
5 interface I2 {
6 const int X = 5;
8 interface I extends I1, I2 {}