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