Updating submodules
[hiphop-php.git] / hphp / hack / test / typecheck / function_pointer / obj_get_dollar_dollar.php
blob1cd6225ef68988d748e1269a9fd9fd60017254b4
1 <?hh
3 final class Foo {
4 public function bar(int $x): void {}
6 public function foo(): void{
7 $x = $this |> $$->bar<>;
8 $x(4);