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