leo/tests/compiler/array/nested_3x2_value.leo
2021-05-05 21:25:24 +03:00

14 lines
296 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
*/
// Multidimensional array syntax in leo
function main(y: bool) -> bool {
const a = [[0u32, 0u32], [0u32, 0u32], [0u32, 0u32]]; // inline
const b: [u32; (3, 2)] = [[0; 2]; 3]; // initializer
return a == b == y;
}