blob: 97dd68f1e76e76949410640b0821cef15b34e329 [file] [log] [blame]
trait Foo {
fn foo();
}
use Foo::foo; //~ ERROR not directly importable
fn main() { foo(); }