1
Fork 0
rust/src/test/ui/bad/bad-module.rs

8 lines
232 B
Rust
Raw Normal View History

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`
}