mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-28 12:45:26 +03:00
13 lines
215 B
Plaintext
13 lines
215 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/scalar_group.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
transition main(a: scalar) -> group {
|
|
let b: group = (0, -)group;
|
|
|
|
return a * b;
|
|
}}
|