php-8.0.30-src/Zend/tests/traits/bug60165a.phpt

18 lines
342 B
PHP

--TEST--
Bug #60165 (Aliasing unexisting trait should throw/trigger the exception/error)
--FILE--
<?php
trait A {
public function bar() {}
}
class MyClass {
use A {
nonExistent as barA;
}
}
?>
--EXPECTF--
Fatal error: An alias (barA) was defined for method nonExistent(), but this method does not exist in %s on line %d