leo/compiler/tests/array/inline.leo
2020-07-30 00:56:17 -07:00

3 lines
63 B
Plaintext

function main(a: u8[3]) {
assert_eq!(a, [1u8, 1u8, 1u8]);
}