Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
resolve
/
bad-module.rs
blob: 0d59222e746f461d7298e1ea25591d84e7fa40f9 [
file
]
fn
main
()
{
let
foo
=
thing
::
len
(
Vec
::
new
());
//~^ ERROR cannot find module or crate `thing`
let
foo
=
foo
::
bar
::
baz
();
//~^ ERROR cannot find module or crate `foo`
}