1 2 3 4 5 6 7
trait Foo { fn foo(); } use Foo::foo; //~ ERROR not directly importable fn main() { foo(); }