leo/tests/parser/expression/array_init.leo
2022-01-28 10:34:02 -08:00

19 lines
140 B
Plaintext

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