Teach hhbbc to optimize away LockObj.
[hiphop-php.git] / hphp / test / slow / object / const / dynamic-construct.php.expect
blob03c38e1aaff1f32ecc3eeb521d330153dc386c38
1 ---- class C ----
2 -- at constructor entry --
3 object(C) (1) {
4   ["ci"]=>
5   int(0)
7 -- after constructor completes --
8 object(C) (1) {
9   ["ci"]=>
10   int(1)
12 Cannot modify const property ci of class C after construction
13 -- at the end --
14 object(C) (1) {
15   ["ci"]=>
16   int(1)
18 ---- class D ----
19 -- at constructor entry --
20 object(D) (1) {
21   ["ci"]=>
22   int(0)
24 -- after constructor completes --
25 object(D) (1) {
26   ["ci"]=>
27   int(1)
29 Cannot modify const property ci of class D after construction
30 -- at the end --
31 object(D) (1) {
32   ["ci"]=>
33   int(1)
35 ---- class E ----
36 -- at constructor entry --
37 object(E) (1) {
38   ["ci"]=>
39   int(0)
41 -- after constructor completes --
42 object(E) (1) {
43   ["ci"]=>
44   int(1)
46 -- at the end --
47 object(E) (1) {
48   ["ci"]=>
49   int(2)