This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
beaf46f7e5
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 06:13:27 -06: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 17:15:45 -05:00
fn
main
(
)
{
}
Reference in New Issue
Copy Permalink