11 lines
186 B
Rust
11 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);
|
||
|
}
|