summaryrefslogtreecommitdiff
path: root/Zend/tests/bug29015.phpt
blob: 6c18ab8a09961464df1040e6b702517f5756b346 (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Bug #29015 (Incorrect behavior of member vars(non string ones)-numeric mem vars und others)
--FILE--
<?php
$a = new stdClass();
$x = "";
$a->$x = "string('')";
var_dump($a);
?>
--EXPECTF--
Fatal error: Cannot access empty property in %sbug29015.php on line 4