leo/tests/compiler/integers/u64/pow.leo
2022-06-13 14:53:01 -07:00

12 lines
184 B
Plaintext

/*
namespace: Compile
expectation: Fail
input_file: inputs/pow.in
# The exponent must be u8, u16, or u32
*/
function main(a: u64, b: u64, c: u64) -> bool {
return a ** b == c;
}