rust/src/test/ui/did_you_mean/issue-38054-do-not-show-unresolved-names.stderr

16 lines
460 B
Plaintext
Raw Normal View History

error[E0432]: unresolved import `Foo`
--> $DIR/issue-38054-do-not-show-unresolved-names.rs:11:5
|
2018-02-22 18:42:32 -06:00
LL | use Foo; //~ ERROR unresolved
| ^^^ no `Foo` in the root
error[E0432]: unresolved import `Foo1`
--> $DIR/issue-38054-do-not-show-unresolved-names.rs:13:5
|
2018-02-22 18:42:32 -06:00
LL | use Foo1; //~ ERROR unresolved
| ^^^^ no `Foo1` in the root
error: aborting due to 2 previous errors
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0432`.