]> granicus.if.org Git - php/commitdiff
add test
authorAntony Dovgal <tony2001@php.net>
Thu, 6 Jul 2006 16:14:56 +0000 (16:14 +0000)
committerAntony Dovgal <tony2001@php.net>
Thu, 6 Jul 2006 16:14:56 +0000 (16:14 +0000)
Zend/tests/016.phpt [new file with mode: 0644]

diff --git a/Zend/tests/016.phpt b/Zend/tests/016.phpt
new file mode 100644 (file)
index 0000000..6ec507e
--- /dev/null
@@ -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