
| Path : /usr/src/php/tests/lang/ |
| Current File : //usr/src/php/tests/lang/bug26182.phpt |
--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
(
)