Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
imports
/
issue-33464.rs
blob: 80c48d92b37b70299ecf8f5a39f4fb9fd8fcb8a7 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2015
// Make sure that the spans of import errors are correct.
use
abc
::
one_el
;
//~^ ERROR
use
abc
::{
a
,
bbb
,
cccccc
};
//~^ ERROR
use
a_very_long_name
::{
el
,
el2
};
//~^ ERROR
fn
main
()
{}