summary refs log tree commit diff
path: root/src/test/ui/const-suggest-feature.rs
blob: d11b91edb88578ed0ab10bbc4a528c508b746538 (plain)
1
2
3
4
5
6
7
const WRITE: () = unsafe {
    *std::ptr::null_mut() = 0;
    //~^ ERROR dereferencing raw pointers in constants is unstable
    //~| HELP add `#![feature(const_raw_ptr_deref)]` to the crate attributes to enable
};

fn main() {}