leo/tests/compiler/integers/u64/min.leo

11 lines
153 B
Plaintext
Raw Normal View History

2021-05-10 21:11:31 +03:00
/*
namespace: Compile
expectation: Pass
input_file: ../input/dummy.in
2021-05-10 21:11:31 +03:00
*/
function main(y: bool) -> bool {
const a: u64 = 0;
return y == true;
2021-05-10 21:11:31 +03:00
}