6 lines
92 B
Plaintext
6 lines
92 B
Plaintext
unit fail_m3_array;
|
|
fn main() -> i32 {
|
|
let a: [2]i32 = [1, true, 3];
|
|
return a[0];
|
|
}
|