summaryrefslogtreecommitdiff
path: root/Zend/tests/unset_cv04.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/unset_cv04.phpt')
-rw-r--r--Zend/tests/unset_cv04.phpt16
1 files changed, 0 insertions, 16 deletions
diff --git a/Zend/tests/unset_cv04.phpt b/Zend/tests/unset_cv04.phpt
deleted file mode 100644
index 5044cb1c8d..0000000000
--- a/Zend/tests/unset_cv04.phpt
+++ /dev/null
@@ -1,16 +0,0 @@
---TEST--
-unset() CV 4 (unset() local variable in included file)
---FILE--
-<?php
-function f() {
- $x = "ok\n";
- echo $x;
- include "unset.inc";
- echo $x;
-}
-f();
-?>
---EXPECTF--
-ok
-
-Notice: Undefined variable: x in %sunset_cv04.php on line %d