This website requires JavaScript.
Explore
Help
Sign in
bjoernager
/
rust
Watch
1
Fork
You've already forked rust
0
Code
Activity
00b976a138
rust
/
tests
/
ui
/
span
/
non-existing-module-import.rs
4 lines
70 B
Rust
Raw
Normal View
History
Unescape
Escape
Merge cfail and ui tests into ui tests
2017-11-20 13:13:27 +01:00
use
std
::
bar
::
{
foo1
,
foo2
}
;
//~ ERROR unresolved import
Point at path segment on module not found Point at the correct path segment on a import statement where a module doesn't exist. New output: ```rust error[E0432]: unresolved import `std::bar` --> <anon>:1:10 | 1 | use std::bar::{foo1, foo2}; | ^^^ Could not find `bar` in `std` ``` instead of: ```rust error[E0432]: unresolved import `std::bar::foo1` --> <anon>:1:16 | 1 | use std::bar::{foo1, foo2}; | ^^^^ Could not find `bar` in `std` error[E0432]: unresolved import `std::bar::foo2` --> <anon>:1:22 | 1 | use std::bar::{foo1, foo2}; | ^^^^ Could not find `bar` in `std` ```
2017-07-23 15:15:45 -07:00
fn
main
(
)
{
}
Copy permalink