blob: ee14f011f631bb534baece790c3c07ef901db1cb (
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);
}
|