blob: 8bdcceaa1918c0fa40e19494e150be3ef9c44380 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0433]: failed to resolve: use of undeclared type or module `thing`
--> $DIR/bad-module.rs:12:15
|
LL | let foo = thing::len(Vec::new());
| ^^^^^ use of undeclared type or module `thing`
error[E0433]: failed to resolve: use of undeclared type or module `foo`
--> $DIR/bad-module.rs:15:15
|
LL | let foo = foo::bar::baz();
| ^^^ use of undeclared type or module `foo`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0433`.
|