]> git.lizzy.rs Git - rust.git/blob - tests/ui/unresolved/unresolved-asterisk-imports.rs
Rollup merge of #106477 - Nathan-Fenner:nathanf/refined-error-span-trait-impl, r...
[rust.git] / tests / ui / unresolved / unresolved-asterisk-imports.rs
1 use not_existing_crate::*; //~ ERROR unresolved import `not_existing_crate
2 use std as foo;
3
4 fn main() {}