--TEST--
Bug #60165 (Aliasing unexisting trait should throw/trigger the exception/error)
--FILE--
<?php

trait {
    public function 
bar() {}
}

class 
MyClass {
    use 
{
        
A::nonExistent as barA;
    }
}

--
EXPECTF--
Fatal errorAn alias was defined for A::nonExistent but this method does not exist in %s on line %d