5 lines
57 B
Rust
5 lines
57 B
Rust
|
fn main() {
|
||
|
let x: &mut [int] = &mut [ 1, 2, 3 ];
|
||
|
}
|
||
|
|