summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/auxiliary/ice-8681-aux.rs
blob: 95b6315132526460293acf9da62bbcf617f68ac1 (plain)
1
2
3
4
5
6
pub fn foo(x: &u32) -> u32 {
    /* Safety:
     * This is totally ok.
     */
    unsafe { *(x as *const u32) }
}