### Description repro: https://3v4l.org/vE0YH Currently ``` use A { A::x as private ax; } ``` is needed to import trait method under different name when such method is defined in more than 1 trait. There is no ambiguity, I would expect php to understand the: ``` use A { x as private ax; } ``` as `x` method from `A` trait.