Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / iface_require_incompat4.php
blob31263b73c3bd0e41777ccaede2b0870769a35138
1 <?hh
3 class Super<T> {
4 public ?T $x;
7 interface I1 {
8 require extends Super<int>;
11 interface I2 {
12 require extends Super<float>;
15 interface I3 extends I1, I2 {}