Handle this typehints
[hiphop-php.git] / hphp / test / quick / this-type.php
blob404712964d4d744edf8a32d8fd8949700e4ca5a8
1 <?hh
3 function a() {
4 return function() { return $this->b; };
6 $c = a();
7 $c();