leo/tests/compiler/integers/u128/mul.leo

14 lines
194 B
Plaintext
Raw Normal View History

2021-05-10 21:11:31 +03:00
/*
namespace: Compile
expectation: Pass
input_file:
- inputs/mul.in
2021-05-10 21:11:31 +03:00
*/
2022-10-06 02:53:49 +03:00
program test.aleo {
transition main(a: u128, b: u128, c: u128) -> bool {
return a * b == c;
}
2021-05-10 21:11:31 +03:00
}