summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-8681.rs
blob: 607b9caa32491599cb8613e9f8f269a2c37d863e (plain)
1
2
3
4
5
6
7
8
9
10
//@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);
}