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

fn f(p: *const u8) -> u8 {
    return *p; //~ ERROR dereference of raw pointer is unsafe
}

fn main() {
}