mirror of https://github.com/rust-lang/rust.git
12 lines
381 B
Plaintext
12 lines
381 B
Plaintext
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `aaa`
|
|
--> $DIR/issue-33293.rs:3:9
|
|
|
|
|
LL | aaa::bbb(_) => ()
|
|
| ^^^ use of unresolved module or unlinked crate `aaa`
|
|
|
|
|
= help: you might be missing a crate named `aaa`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|