summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/issue-33464.rs
blob: a0edb5fdb6f9363b50946f90c6e9a3f8af299433 (plain)
1
2
3
4
5
6
7
8
9
10
// 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() {}