1--TEST-- 2Bug #60165 (Aliasing unexisting trait should throw/trigger the exception/error) 3--FILE-- 4<?php 5 6trait A { 7 public function bar() {} 8} 9 10class MyClass { 11 use A { 12 A::nonExistent as barA; 13 } 14} 15?> 16--EXPECTF-- 17Fatal error: An alias was defined for A::nonExistent but this method does not exist in %s on line %d 18