Move test/slow/rx into test/slow/coeffects/rx
[hiphop-php.git] / hphp / test / slow / coeffects / rx / body / second_dim_for_write_through_prop_from_this_name_expression.php
blobf3a11b40cf944b5faaa4952fce7b39297023454a
1 <?hh
3 class C {
4 public $p;
6 public function bad()[rx] {
7 $p1 = new stdClass();
8 $p1->q = darray[3 => true];
9 $this->p = $p1;
11 $this->p->{__hhvm_intrinsics\launder_value('q')}[3] = false;
15 <<__EntryPoint>>
16 function test() {
17 $c = new C();
18 $c->bad();