2017-02-02 05:05:49 -06:00
|
|
|
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
|
2017-02-02 05:05:49 -06:00
|
|
|
| ^^^ 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
|
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
|
|
|
|