mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
d30cd7d7e7
Closes GH-5590
11 lines
234 B
PHP
11 lines
234 B
PHP
--TEST--
|
|
Bug #47109 (Memory leak on $a->{"a"."b"} when $a is not an object)
|
|
--FILE--
|
|
<?php
|
|
$a->{"a"."b"};
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Undefined variable $a in %s on line %d
|
|
|
|
Warning: Attempt to read property "ab" on null in %s on line %d
|