1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/Zend/tests/traits/bugs/alias01.phpt
2018-10-14 12:07:20 -03:00

30 lines
413 B
PHP

--TEST--
Aliases are applied to the correct methods, and only to them.
--FILE--
<?php
trait T1 {
function m1() { echo "T:m1\n"; }
function m2() { echo "T:m2\n"; }
}
class C1 {
use T1 { m1 as a1; }
}
$o = new C1;
$o->m1();
$o->a1();
$o->m2();
$o->a2();
?>
--EXPECTF--
T:m1
T:m1
T:m2
Fatal error: Uncaught Error: Call to undefined method C1::a2() in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d