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