Patch bug60536.phpt for Scripting Engine problem Bug #60536
Patch version 2011-12-16 15:57 UTC
Return to Bug #60536 |
Download this patch
Patch Revisions:
Developer: laruence@php.net
--TEST--
Bug #60536 (Traits Segfault)
--FILE--
<?php
trait T { private $x = 0; }
class X {
use T;
}
class Y extends X {
use T;
function x() {
return ++$this->x;
}
}
class Z extends Y {
function z() {
return ++$this->x;
}
}
$a = new Z();
$a->x();
echo "DONE";
?>
--EXPECTF--
Strict Standards: X and T define the same property ($x) in the composition of Y. This might be incompatible, to improve maintainability consider using accessor methods in traits instead. Class was composed in %sbug60536.php on line %d
DONE
|