summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unsafe/unsafe-fn-assign-deref-ptr.rs
blob: a94e94375ae6a3bcbe88daa32597348b743f46cf (plain)
1
2
3
4
5
6
7
8
9
10
// revisions: mir thir
// [thir]compile-flags: -Z thir-unsafeck

fn f(p: *mut u8) {
    *p = 0; //~ ERROR dereference of raw pointer is unsafe
    return;
}

fn main() {
}