rust/tests/ui/did_you_mean/issue-38054-do-not-show-unr...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
416 B
Plaintext
Raw Normal View History

error[E0432]: unresolved import `Foo`
2018-12-25 23:56:47 +08:00
--> $DIR/issue-38054-do-not-show-unresolved-names.rs:1:5
|
2019-03-09 20:03:44 +08:00
LL | use Foo;
| ^^^ no `Foo` in the root
error[E0432]: unresolved import `Foo1`
2018-12-25 23:56:47 +08:00
--> $DIR/issue-38054-do-not-show-unresolved-names.rs:3:5
|
2019-03-09 20:03:44 +08:00
LL | use Foo1;
| ^^^^ no `Foo1` in the root
error: aborting due to 2 previous errors
2018-03-03 22:59:40 +08:00
For more information about this error, try `rustc --explain E0432`.