db9577b140
Strict mode was the old name. Let's avoid any confusion in the future and rename things.
15 linhas
207 B
PHP
15 linhas
207 B
PHP
<?hh
|
|
|
|
class :x:frag {}
|
|
|
|
class Foo {
|
|
private :x:frag $c;
|
|
protected :x:frag $b;
|
|
public :x:frag $a;
|
|
|
|
public static function bar(:x:frag $x): :x:frag {
|
|
return $x;
|
|
}
|
|
}
|
|
print_r(Foo::bar(<x:frag/>));
|