php-src/Zend/tests/016.phpt
2018-10-14 19:45:12 +02:00

13 lines
156 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