about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-8681.rs
blob: b7d6c4556bbd34d8437ae05a0b7f8185b34feff9 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ check-pass
//@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);
}