blob: 8a98b1b7f769e87ceb90a6cecd23ef3b4a5abc24 [file] [log] [blame]
static mut a: isize = 3;
fn main() {
unsafe {
a = true; //~ ERROR: mismatched types
}
}