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