mirror of
https://github.com/php/php-src.git
synced 2024-12-15 12:54:57 +08:00
12 lines
254 B
Plaintext
12 lines
254 B
Plaintext
|
--TEST--
|
||
|
Bug #47109 (Memory leak on $a->{"a"."b"} when $a is not an object)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
$a->{"a"."b"};
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Notice: Undefined variable: a in %sbug47109.php on line 2
|
||
|
|
||
|
Notice: Trying to get property of non-object in %sbug47109.php on line 2
|
||
|
|