diff --git a/tests/aot/object_property/002.phpt b/tests/aot/object_property/002.phpt index 94614e3b..8c182fc2 100644 --- a/tests/aot/object_property/002.phpt +++ b/tests/aot/object_property/002.phpt @@ -8,9 +8,10 @@ class Test { protected string $attr2 = 'hello'; protected int $attr3 = 1232; protected float $attr4 = 3.1415; + protected bool $attr5 = true; function bar() { - var_dump($this->attr1, $this->attr2, $this->attr3, $this->attr4); + var_dump($this->attr1, $this->attr2, $this->attr3, $this->attr4, $this->attr5); } } @@ -23,4 +24,5 @@ function main() { bool(false) string(5) "hello" int(1232) -float(3.1415) \ No newline at end of file +float(3.1415) +bool(true) \ No newline at end of file