summaryrefslogtreecommitdiff
path: root/tests/lang/bug24573.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug24573.phpt')
-rw-r--r--tests/lang/bug24573.phpt23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/lang/bug24573.phpt b/tests/lang/bug24573.phpt
deleted file mode 100644
index a7c8ac5ca5..0000000000
--- a/tests/lang/bug24573.phpt
+++ /dev/null
@@ -1,23 +0,0 @@
---TEST--
-Bug #24573 (debug_backtrace() crashes if $this is set to null)
---FILE--
-<?php
-
-class Foo {
- function Bar() {
- $__this = $this;
- $this = null;
- debug_backtrace();
- $this = $__this;
- }
-}
-
-$f = new Foo;
-
-$f->Bar();
-
-echo "OK\n";
-
-?>
---EXPECT--
-OK