summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
Diffstat (limited to 'Zend')
-rw-r--r--Zend/tests/016.phpt12
1 files changed, 12 insertions, 0 deletions
diff --git a/Zend/tests/016.phpt b/Zend/tests/016.phpt
new file mode 100644
index 0000000000..6ec507e6b1
--- /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