1
1
mirror of https://github.com/AleoHQ/leo.git synced 2025-01-04 16:15:11 +03:00
leo/tests/compiler/scalar/div.leo
2022-05-14 20:27:08 -07:00

10 lines
158 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file:
- inputs/scalars.in
*/
function main(a: scalar, b: scalar, c: scalar) -> bool {
return a / b != c;
}