rust/tests/ui/imports/import-trait-method.rs
2023-01-11 09:32:08 +00:00

8 lines
99 B
Rust

trait Foo {
fn foo();
}
use Foo::foo; //~ ERROR not directly importable
fn main() { foo(); }