]> git.proxmox.com Git - rustc.git/blob - tests/ui/unresolved/unresolved-asterisk-imports.rs
New upstream version 1.68.2+dfsg1
[rustc.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() {}