Untyped variadic function types should not be permitted in strict mode
[hiphop-php.git] / hphp / hack / test / typecheck / iface_require_incompat3.php
blob476383679b1106dfa948e952673538366e45ed63
1 <?hh
3 class Super<T> {}
5 interface I1 {
6 require extends Super<int>;
9 interface I2 extends I1 {}
11 class C implements I2 {}