Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / covariance_decl_conflict_3.php
blob8b0f9b1b6bc4d82050d5cb473653506fd72d2656
1 <?hh
3 class Foo<+T> {}
5 interface Bar<-T> {}
7 class Baz<+T> extends Foo<T> implements Bar<T> {}