]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/issue-33464.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / imports / issue-33464.rs
1 // Make sure that the spans of import errors are correct.
2
3 use abc::one_el;
4 //~^ ERROR
5 use abc::{a, bbb, cccccc};
6 //~^ ERROR
7 use a_very_long_name::{el, el2};
8 //~^ ERROR
9
10 fn main() {}