summaryrefslogtreecommitdiffstats
path: root/src/test/ui/static/static-mut-bad-types.rs
blob: 8a98b1b7f769e87ceb90a6cecd23ef3b4a5abc24 (plain)
1
2
3
4
5
6
7
static mut a: isize = 3;

fn main() {
    unsafe {
        a = true; //~ ERROR: mismatched types
    }
}