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

16 lines
470 B
Plaintext
Raw Normal View History

error[E0432]: unresolved import `Foo`
--> $DIR/issue-38054-do-not-show-unresolved-names.rs:11:5
|
2017-11-20 06:13:27 -06:00
11 | 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
|
2017-11-20 06:13:27 -06:00
13 | use Foo1; //~ ERROR unresolved
| ^^^^ no `Foo1` in the root
error: aborting due to 2 previous errors
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0432"