Fix bug in hack codegen for sets
[hiphop-php.git] / hphp / hack / test / typecheck / lambda / violated_constraints.php
bloba4d9732cd6ad44d93fc04919dd18d0210873af57
1 <?hh
3 class A<T as num> {}
5 function test() : void {
6 // constraints violated here in two places
7 $f = (A<string> $x) : A<string> ==> { return $x;};