leo/tests/compiler/integers/i64/pow_fail.leo

10 lines
144 B
Plaintext
Raw Normal View History

/*
namespace: Compile
expectation: Fail
input_file: inputs/pow.in
*/
function main(a: i64, b: i64, c: i64) -> bool {
return a ** b == c;
}