php-src/Zend/tests/traits/bug54441.phpt
Stefan Marr 76772dc20d Fixes Bug #54441 (Handling of changing modifiers on a trait alias)
# this now results also in a compilation error, since it would open the door for inconsistencies, and violates the DRY principle.
2011-11-18 13:49:07 +00:00

20 lines
367 B
PHP

--TEST--
Bug #54441 (Changing trait static method visibility)
--FILE--
<?php
trait Foo {
public function bar() {}
}
class Boo {
use Foo {
bar as dontKnow;
dontKnow as protected;
}
}
?>
--EXPECTF--
Fatal error: The modifiers for the trait alias dontKnow() need to be changed in the same statment in which the alias is defined. Error in %s on line %d