blob: 591edfa747cfa6874a2dcc6b3406077fdf808a7a (
plain)
1
2
3
4
5
6
7
8
9
10
|
--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
|