Readonly in emitter flag
[hiphop-php.git] / hphp / test / slow / readonly / locals.php
blob20b652ed9f382979f5f751cfb2bb0fb7af21f6da
1 <?hh //strict
3 <<file: __EnableUnstableFeatures('readonly')>>
5 class P {
6 public function __construct(public int $i) { }
9 <<__EntryPoint>>
10 function main() {
11 $p = readonly new P(1);
12 $p->i = 10;