]> git.lizzy.rs Git - rust.git/blob - tests/ui/unresolved/unresolved-asterisk-imports.rs
Rollup merge of #106605 - notriddle:notriddle/outdated-rustbook, r=GuillaumeGomez
[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() {}