Arquivos
hhvm/hphp/test/quick/hh_classes.php
T
Alok Menghrajani db9577b140 Rename strict with Hack
Strict mode was the old name. Let's avoid any confusion in the future and rename things.
2013-05-15 13:05:03 -07:00

10 linhas
100 B
PHP

<?hh
class Foo<X> {
protected ?int $x;
protected Foo<X> $y;
protected ?Foo $z;
}
echo "ok";