]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/issue-33464.rs
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[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() {}