leo/tests/compiler/integers/u8/max.leo

11 lines
156 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: ../input/dummy.in
*/
function main(y: bool) -> bool {
const a: u8 = 255u8;
return y == true;
}