mirror of
https://github.com/php/php-src.git
synced 2024-11-29 12:53:37 +08:00
12 lines
254 B
PHP
12 lines
254 B
PHP
--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
|
|
|