2024-11-18 03:42:16 +00:00
|
|
|
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `lib2`
|
2024-02-15 08:31:46 +11:00
|
|
|
--> $DIR/issue-121103.rs:1:38
|
|
|
|
|
|
|
|
|
|
|
LL | fn main(_: <lib2::GenericType<42> as lib2::TypeFn>::Output) {}
|
2024-11-18 03:42:16 +00:00
|
|
|
| ^^^^ use of unresolved module or unlinked crate `lib2`
|
|
|
|
|
|
|
|
|
|
|
= help: you might be missing a crate named `lib2`
|
2024-02-15 08:31:46 +11:00
|
|
|
|
2024-11-18 03:42:16 +00:00
|
|
|
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `lib2`
|
2024-02-15 08:31:46 +11:00
|
|
|
--> $DIR/issue-121103.rs:1:13
|
|
|
|
|
|
|
|
|
|
|
LL | fn main(_: <lib2::GenericType<42> as lib2::TypeFn>::Output) {}
|
2024-11-18 03:42:16 +00:00
|
|
|
| ^^^^ use of unresolved module or unlinked crate `lib2`
|
|
|
|
|
|
|
|
|
|
|
= help: you might be missing a crate named `lib2`
|
2024-02-15 08:31:46 +11:00
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|