mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
7 lines
171 B
Rust
7 lines
171 B
Rust
// Checks that immutable static items can't have mutable slices
|
|
|
|
static TEST: &'static mut [isize] = &mut [];
|
|
//~^ ERROR mutable borrows of temporaries
|
|
|
|
pub fn main() { }
|