summaryrefslogtreecommitdiff
path: root/tests/lang/bug24573.phpt
blob: 4a088c35e8a238900708f9642df87873d60c595b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--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";

?>
--EXPECTF--

Fatal error: Cannot re-assign $this in %s on line %d