blob: 916a77d99348425b02ed3ed6dc1ace682b1a0157 [file] [log] [blame]
//@ run-pass
//@ pretty-expanded FIXME #23616
use std::ptr;
pub fn main() {
unsafe {
let mut x: bool = false;
// this line breaks it
ptr::write(&mut x, false);
}
}