diff options
Diffstat (limited to 'Zend/tests/016.phpt')
-rw-r--r-- | Zend/tests/016.phpt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Zend/tests/016.phpt b/Zend/tests/016.phpt new file mode 100644 index 000000000..6ec507e6b --- /dev/null +++ b/Zend/tests/016.phpt @@ -0,0 +1,12 @@ +--TEST-- +isset() with object properties when operating on non-object +--FILE-- +<?php + +$foo = NULL; +isset($foo->bar->bar); + +echo "Done\n"; +?> +--EXPECT-- +Done |