--TEST--
Bug #60145 (Usage of trait's use statement inside interfaces not properly checked.)
--FILE--
<?php

trait foo {

}

interface 
MyInterface {
    use 
foo;

    public function 
b();

}
--
EXPECTF--
Fatal errorCannot use traits inside of interfacesfoo is used in MyInterface in %s on line %d