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

trait {
    public function 
bar() {}
}

class 
MyClass {
    use 
{
        
nonExistent as barA;
    }
}

--
EXPECTF--
Fatal errorAn alias (barAwas defined for method nonExistent(), but this method does not exist in %s on line %d