7 lines
232 B
Rust
7 lines
232 B
Rust
fn main() {
|
|
let foo = thing::len(Vec::new());
|
|
//~^ ERROR failed to resolve: use of undeclared type or module `thing`
|
|
|
|
let foo = foo::bar::baz();
|
|
//~^ ERROR failed to resolve: use of undeclared type or module `foo`
|
|
}
|