leo/tests/parser/expression/array_init.leo

17 lines
130 B
Plaintext

/*
namespace: ParseExpression
expectation: Pass
*/
[0u8; 1]
[0; 1]
[0; (1, 2)]
[0; (1, 2,)]
[0; (1, 2, 3)]
[[[0; 3]; 2]; 1]