summaryrefslogtreecommitdiff
path: root/Zend/tests/error_reporting09.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/error_reporting09.phpt')
-rw-r--r--Zend/tests/error_reporting09.phpt31
1 files changed, 0 insertions, 31 deletions
diff --git a/Zend/tests/error_reporting09.phpt b/Zend/tests/error_reporting09.phpt
deleted file mode 100644
index 193758148c..0000000000
--- a/Zend/tests/error_reporting09.phpt
+++ /dev/null
@@ -1,31 +0,0 @@
---TEST--
-testing @ and error_reporting - 9
---FILE--
-<?php
-
-error_reporting(E_ALL);
-
-function bar() {
- echo @$blah;
- echo $undef2;
-}
-
-function foo() {
- echo @$undef;
- error_reporting(E_ALL|E_STRICT);
- echo $blah;
- return bar();
-}
-
-@foo();
-
-var_dump(error_reporting());
-
-echo "Done\n";
-?>
---EXPECTF--
-Notice: Undefined variable: blah in %s on line %d
-
-Notice: Undefined variable: undef2 in %s on line %d
-int(8191)
-Done