summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-28776.rs
blob: 19df3c4a4252b1c51fc22dd6d52afb2c6e874971 (plain)
1
2
3
4
5
6
7
8
9
// revisions: mir thir
// [thir]compile-flags: -Z thir-unsafeck

use std::ptr;

fn main() {
    (&ptr::write)(1 as *mut _, 42);
    //~^ ERROR E0133
}