leo/tests/compiler/integers/u8/pow.leo

16 lines
255 B
Plaintext

// namespace: Compile
// expectation: Pass
// inputs:
// - u8_f.in: |
// [main]
// a: u8 = 2;
// b: u8 = 2;
// c: u8 = 4;
// [registers]
// r0: bool = true;
function main(a: u8, b: u8, c: u8) -> bool {
return a ** b == c;
}