mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-28 04:35:33 +03:00
15 lines
310 B
Plaintext
15 lines
310 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/pow.in
|
|
|
|
# This test might take to long to fully compile.
|
|
# If necessary we could move it to disabled_tests.
|
|
*/
|
|
|
|
program test.aleo {
|
|
transition main(a: u32, b: u32, c: u32) -> bool {
|
|
return a ** 2u8 == a ** 2u16 && a ** b == c;
|
|
}
|
|
}
|