php-src/Zend/tests/016.phpt
Antony Dovgal de23c325e9 add test
2006-07-06 16:17:12 +00:00

13 lines
158 B
PHP

--TEST--
isset() with object properties when operating on non-object
--FILE--
<?php
$foo = NULL;
isset($foo->bar->bar);
echo "Done\n";
?>
--EXPECT--
Done