Fix memoization of functions called with keyset arguments
[hiphop-php.git] / hphp / test / quick / hh_softtype2.php
blob7abfc68c4cbb0938500325716ce4c3cdad6122d3
1 <?hh
3 interface Hey {
4 function wat(@Foo $x);
7 class Bar implements Hey {
8 public function wat($x) {
12 new Bar();
13 echo "ok\n";