summaryrefslogtreecommitdiff
path: root/tests/lang/bug23922.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug23922.phpt')
-rw-r--r--tests/lang/bug23922.phpt20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/lang/bug23922.phpt b/tests/lang/bug23922.phpt
deleted file mode 100644
index 1fc6e548ff..0000000000
--- a/tests/lang/bug23922.phpt
+++ /dev/null
@@ -1,20 +0,0 @@
---TEST--
-Bug #23922 (scope doesn't properly propagate into internal functions)
---FILE--
-<?php
- class foo
- {
- public $foo = 1;
-
- function as_string()
- { assert('$this->foo == 1'); }
-
- function as_expr()
- { assert($this->foo == 1); }
- }
-
- $foo = new foo();
- $foo->as_expr();
- $foo->as_string();
-?>
---EXPECT--