rust/src/test/ui/imports/issue-53512.rs

8 lines
176 B
Rust
Raw Normal View History

// Macro from prelude is shadowed by non-existent import recovered as `Def::Err`.
use std::assert; //~ ERROR unresolved import `std::assert`
fn main() {
assert!(true);
}