7 lines
83 B
Plaintext
7 lines
83 B
Plaintext
unit m3_bounds;
|
|
|
|
fn main() -> i32 {
|
|
let a: [2]i32 = [1, 2];
|
|
return a[2];
|
|
}
|