Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
statics
/
check-immutable-mut-slices.rs
blob: 19545a1c92554f9fde66186705e6c74097dba7a8 [
file
] [
log
] [
blame
]
// Checks that immutable static items can't have mutable slices
static
TEST
:
&
'
static
mut
[
isize
]
=
&
mut
[];
//~^ ERROR mutable borrows of temporaries
pub
fn
main
()
{
}