rust/tests/ui/imports/issue-33464.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
183 B
Rust
Raw Normal View History

// Make sure that the spans of import errors are correct.
use abc::one_el;
2018-12-25 15:56:47 +00:00
//~^ ERROR
use abc::{a, bbb, cccccc};
2018-12-25 15:56:47 +00:00
//~^ ERROR
use a_very_long_name::{el, el2};
2018-12-25 15:56:47 +00:00
//~^ ERROR
fn main() {}