leo/tests/compiler/integers/u16/pow.leo

16 lines
262 B
Plaintext
Raw Normal View History

// namespace: Compile
// expectation: Pass
// inputs:
// - u16_f.in: |
// [main]
// a: u16 = 2;
// b: u16 = 2;
// c: u16 = 4;
2021-05-10 21:11:31 +03:00
// [registers]
// r0: bool = true;
2021-05-10 21:11:31 +03:00
function main(a: u16, b: u16, c: u16) -> bool {
return a ** b == c;
}