php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #60536
Patch property008.phpt revision 2011-12-16 16:46 UTC by gron@php.net
Patch property007.phpt revision 2011-12-16 16:19 UTC by gron@php.net
Patch property006.phpt revision 2011-12-16 16:19 UTC by gron@php.net
Patch property005.phpt revision 2011-12-16 16:19 UTC by gron@php.net
Patch bug60536.phpt revision 2011-12-16 15:57 UTC by laruence@php.net
Patch bug60536.patch revision 2011-12-16 15:54 UTC by laruence@php.net

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
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 03:01:29 2024 UTC