--TEST--
Bug #26182 (Object properties created redundantly)
--INI--
error_reporting=4095
--FILE--
<?php

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

$t = new ();

print_r($t);

?>
--EXPECT--
A Object
(
)