Updating submodules
[hiphop-php.git] / hphp / test / slow / class_type_constant / recursion_is.php
blob8581d03752656629dd9cd970be5211a8f81c2159
1 <?hh
3 class A {
4 const type B = self::C;
5 const type C = self::B;
8 <<__EntryPoint>> function main() {
9 var_dump(null is A::B);