]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/bad-module.rs
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[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 }