blob: e67406a65630c1640b0494b2c595c41e24a52b4e [file] [log] [blame]
#![allow(unnecessary_transmutes)]
use std::mem;
static FOO: bool = unsafe { mem::transmute(3u8) };
//~^ ERROR 0x03, but expected a bool
fn main() {}