mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
10 lines
186 B
Rust
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);
|
|
}
|