Add conflicting concrete typeconst check, change class const map to not consider...
[hiphop-php.git] / hphp / hack / test / typecheck / stricter_consts / synthesized_const_no_conflict.php
bloba4d1073b8bd0c37a40c32bc6a3f07e515bb0a5dd
1 <?hh
3 class A {
4 const int X = 3;
6 class B extends A {
7 const int X = 4;
10 trait T {
11 require extends A;
13 class C extends B {
14 use T;