db9577b140
Strict mode was the old name. Let's avoid any confusion in the future and rename things.
10 linhas
100 B
PHP
10 linhas
100 B
PHP
<?hh
|
|
|
|
class Foo<X> {
|
|
protected ?int $x;
|
|
protected Foo<X> $y;
|
|
protected ?Foo $z;
|
|
}
|
|
|
|
echo "ok";
|