Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
imports
/
import-trait-method.rs
blob: 97dd68f1e76e76949410640b0821cef15b34e329 [
file
] [
log
] [
blame
]
trait
Foo
{
fn
foo
();
}
use
Foo
::
foo
;
//~ ERROR not directly importable
fn
main
()
{
foo
();
}