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