summaryrefslogtreecommitdiff
path: root/Zend/tests/anonymous_func_003.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/anonymous_func_003.phpt')
-rw-r--r--Zend/tests/anonymous_func_003.phpt16
1 files changed, 0 insertions, 16 deletions
diff --git a/Zend/tests/anonymous_func_003.phpt b/Zend/tests/anonymous_func_003.phpt
deleted file mode 100644
index d2610310f7..0000000000
--- a/Zend/tests/anonymous_func_003.phpt
+++ /dev/null
@@ -1,16 +0,0 @@
---TEST--
-Using throw $var with anonymous function return
---FILE--
-<?php
-
-try {
- $a = create_function('', 'return new Exception("test");');
- throw $a();
-} catch (Exception $e) {
- var_dump($e->getMessage() == 'test');
-}
-
-?>
---EXPECTF--
-Deprecated: Function create_function() is deprecated in %s on line %d
-bool(true)