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