Updating submodules
[hiphop-php.git] / hphp / hack / test / typecheck / function_pointer / class_get_illegal.php
blobc30e1b1f5738e98b45761162f3d78ec2c3ea8422
1 <?hh
3 final class Foo {
4 public static function bar(int $x): void {}
7 function qux(): void {
8 $x = Foo::{'bar' . ''}<>;
9 $x(4);
12 <<__EntryPoint>>
13 function main(): void {
14 qux();