leo/tests/parser/expression/array_init.leo
2021-04-12 13:15:40 -07:00

16 lines
125 B
Plaintext

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