Updating submodules
[hiphop-php.git] / hphp / hack / test / typecheck / function_pointer / bad_syntax2.php
blob87c9e3a39b55d410bc7d13f89f6a8c4aa83954e8
1 <?hh
3 final class Foo {
4 public function bar(int $x): void {}
7 function qux(): void {
8 $z = new Foo();
9 $y = 'bar';
10 $x = $z->$y<>;
11 $x(4);
14 <<__EntryPoint>>
15 function main(): void {
16 qux();