Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
static
/
static-mut-bad-types.rs
blob: 8a98b1b7f769e87ceb90a6cecd23ef3b4a5abc24 [
file
]
static
mut
a
:
isize
=
3
;
fn
main
()
{
unsafe
{
a
=
true
;
//~ ERROR: mismatched types
}
}