mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
17 lines
162 B
Plaintext
17 lines
162 B
Plaintext
/*
|
|
namespace: ParseExpression
|
|
expectation: Pass
|
|
*/
|
|
|
|
[0u8; 1].len()
|
|
|
|
[0; 1].len()
|
|
|
|
[0; (1)].len()
|
|
|
|
[0; (1, 2)].len()
|
|
|
|
[0; (1, 2, 3)].len()
|
|
|
|
[[[0; 3]; 2]; 1].len()
|