rust-clippy/tests/ui/crashes/ice-8681.rs

10 lines
186 B
Rust

//@aux-build: ice-8681-aux.rs
#![warn(clippy::undocumented_unsafe_blocks)]
#[path = "auxiliary/ice-8681-aux.rs"]
mod ice_8681_aux;
fn main() {
let _ = ice_8681_aux::foo(&0u32);
}