php-src/tests/lang/bug26182.phpt

26 lines
288 B
Plaintext
Raw Normal View History

2003-11-25 09:20:56 +00:00
--TEST--
Bug #26182 (Object properties created redundantly)
--INI--
error_reporting=4095
2003-11-25 09:20:56 +00:00
--FILE--
<?php
class A {
function NotAConstructor ()
{
if (isset($this->x)) {
//just for demo
}
}
}
$t = new A ();
print_r($t);
?>
--EXPECT--
A Object
2003-11-25 09:20:56 +00:00
(
)