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