summaryrefslogtreecommitdiff
path: root/tests/lang/bug26182.phpt
blob: 7417293928a147c8e203807186ecb918b414ef54 (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
--TEST--
Bug #26182 (Object properties created redundantly)
--INI--
error_reporting=4095
--FILE--
<?php

class A {
    function NotAConstructor ()
    {
        if (isset($this->x)) {
            //just for demo
        }
    }
}

$t = new A ();

print_r($t);

?>
--EXPECT--
A Object
(
)