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