leo/tests/compiler/integers/u64/pow.leo

12 lines
184 B
Plaintext
Raw Normal View History

/*
namespace: Compile
2022-06-14 00:53:01 +03:00
expectation: Fail
input_file: inputs/pow.in
2022-06-14 00:53:01 +03:00
# The exponent must be u8, u16, or u32
*/
2021-05-10 21:11:31 +03:00
function main(a: u64, b: u64, c: u64) -> bool {
return a ** b == c;
}