]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/bad-module.rs
Move /src/test to /tests
[rust.git] / tests / ui / resolve / bad-module.rs
1 fn main() {
2     let foo = thing::len(Vec::new());
3     //~^ ERROR failed to resolve: use of undeclared crate or module `thing`
4
5     let foo = foo::bar::baz();
6     //~^ ERROR failed to resolve: use of undeclared crate or module `foo`
7 }