summaryrefslogtreecommitdiff
path: root/tests/lang/bug24403.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug24403.phpt')
-rw-r--r--tests/lang/bug24403.phpt21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/lang/bug24403.phpt b/tests/lang/bug24403.phpt
deleted file mode 100644
index 8f4934e7b9..0000000000
--- a/tests/lang/bug24403.phpt
+++ /dev/null
@@ -1,21 +0,0 @@
---TEST--
-Bug #24403 (scope doesn't properly propagate into internal functions)
---FILE--
-<?php
-class a
-{
- public $a = array();
-
- function a()
- {
- $output = preg_replace(
- '!\{\s*([a-z0-9_]+)\s*\}!sie',
- "(in_array('\\1',\$this->a) ? '\'.\$p[\'\\1\'].\'' :
-'\'.\$r[\'\\1\'].\'')",
- "{a} b {c}");
- }
-}
-new a();
-?>
---EXPECTF--
-Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in %s on line %d