leo/tests/compiler/integers/i128/div.leo
2022-08-04 20:00:40 -07:00

11 lines
155 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: inputs/div.in
*/
@program
function main(a: i128, b: i128, c: i128) -> bool {
return a / b == c;
}