summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/bug55372.phpt
blob: 509b672bf29bd075a01620364664914678d59f8b (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
25
26
27
28
--TEST--
Bug #55372 (Literal handling in methods is inconsistent, causing memory corruption)
--FILE--
<?php

trait testTrait {
    public function testMethod() {
        if (1) {
            $letters1 = range('a', 'z', 1);
            $letters2 = range('A', 'Z', 1);
            $letters1 = 'foo';
            $letters2 = 'baarr';
            var_dump($letters1);
            var_dump($letters2);
        }
    }
}

class foo {
    use testTrait;
}

$x = new foo;
$x->testMethod();
?>
--EXPECT--
string(3) "foo"
string(5) "baarr"