summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-07-06 16:14:56 +0000
committerAntony Dovgal <tony2001@php.net>2006-07-06 16:14:56 +0000
commit91f9af4360ee6c63870c34ec52321addb7f34e01 (patch)
tree83dab06defe6281f0b1a79cd76404313562947c8 /Zend
parent86bbbbdce4144db0f699de7fcc77c6004afa770c (diff)
downloadphp-git-91f9af4360ee6c63870c34ec52321addb7f34e01.tar.gz
add test
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