about summary refs log tree commit diff
path: root/tests/ui/unsafe/unsafe-fn-deref-ptr.rs
blob: a3144824323d89fffdacccb4f52ea36b36f87485 (plain)
1
2
3
4
5
6
7
8
9
fn f(p: *const u8) -> u8 {
    let _ = *p; //~ ERROR dereference of raw pointer is unsafe
    let _: u8 = *p; //~ ERROR dereference of raw pointer is unsafe
    _ = *p; //~ ERROR dereference of raw pointer is unsafe
    return *p; //~ ERROR dereference of raw pointer is unsafe
}

fn main() {
}