summaryrefslogtreecommitdiff
path: root/Zend/tests/unset_cv01.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/unset_cv01.phpt')
-rw-r--r--Zend/tests/unset_cv01.phpt13
1 files changed, 0 insertions, 13 deletions
diff --git a/Zend/tests/unset_cv01.phpt b/Zend/tests/unset_cv01.phpt
deleted file mode 100644
index 99af118d10..0000000000
--- a/Zend/tests/unset_cv01.phpt
+++ /dev/null
@@ -1,13 +0,0 @@
---TEST--
-unset() CV 1 (unset() global variable)
---FILE--
-<?php
-$x = "ok\n";
-echo $x;
-unset($x);
-echo $x;
-?>
---EXPECTF--
-ok
-
-Notice: Undefined variable: x in %sunset_cv01.php on line %d