leo/tests/compiler/array_without_size/length.leo
2021-09-10 16:55:32 +03:00

10 lines
154 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
*/
function main(a: [char; 11], y: bool) -> bool {
return y == (a.len() == 11);
}