xref: /PHP-7.4/Zend/tests/bug75420.5.phpt (revision bc59289b)
1--TEST--
2Bug #75420.5 (Indirect modification of magic method argument)
3--FILE--
4<?php
5class Test {
6	public function __isset($x) { $GLOBALS["obj"] = 24; return true; }
7	public function __get($x) { var_dump($this); return 42; }
8}
9
10$obj = new Test;
11$name = "foo";
12var_dump($obj->$name ?? 12);
13var_dump($obj);
14?>
15--EXPECT--
16object(Test)#1 (0) {
17}
18int(42)
19int(24)
20