1--TEST--
2Lazy objects: property op initializes object
3--FILE--
4<?php
5
6class C {
7    public int $a = 1;
8    public function __construct() {
9        var_dump(__METHOD__);
10        $this->a = 2;
11    }
12}
13
14function test(string $name, object $obj) {
15    printf("# %s:\n", $name);
16
17    var_dump($obj);
18    var_dump($obj->a++);
19    var_dump($obj);
20}
21
22$reflector = new ReflectionClass(C::class);
23
24$obj = $reflector->newLazyGhost(function ($obj) {
25    var_dump("initializer");
26    $obj->__construct();
27});
28
29test('Ghost', $obj);
30
31$obj = $reflector->newLazyProxy(function ($obj) {
32    var_dump("initializer");
33    return new C();
34});
35
36test('Proxy', $obj);
37
38--EXPECTF--
39# Ghost:
40lazy ghost object(C)#%d (0) {
41  ["a"]=>
42  uninitialized(int)
43}
44string(11) "initializer"
45string(14) "C::__construct"
46int(2)
47object(C)#%d (1) {
48  ["a"]=>
49  int(3)
50}
51# Proxy:
52lazy proxy object(C)#%d (0) {
53  ["a"]=>
54  uninitialized(int)
55}
56string(11) "initializer"
57string(14) "C::__construct"
58int(2)
59lazy proxy object(C)#%d (1) {
60  ["instance"]=>
61  object(C)#%s (1) {
62    ["a"]=>
63    int(3)
64  }
65}
66