]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/crashes/ice-8681.rs
Rollup merge of #96733 - SparrowLii:place_to_string, r=davidtwco
[rust.git] / src / tools / clippy / tests / ui / crashes / ice-8681.rs
1 // aux-build: ice-8681-aux.rs
2
3 #![warn(clippy::undocumented_unsafe_blocks)]
4
5 #[path = "auxiliary/ice-8681-aux.rs"]
6 mod ice_8681_aux;
7
8 fn main() {
9     let _ = ice_8681_aux::foo(&0u32);
10 }