--TEST-- Bug #60536 (Traits Segfault) --FILE-- x; } } class Z extends Y { function __construct() { return ++$this->x; } } $a = new Z(); $a->__construct(); echo "DONE"; ?> --EXPECTF-- Warning: Undefined property: Z::$x in %s on line %d DONE