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