leo/tests/compiler/group/x_sign_low.leo

13 lines
215 B
Plaintext
Raw Normal View History

2022-08-02 01:33:26 +03:00
/*
namespace: Compile
expectation: Pass
input_file: inputs/scalar_group.in
*/
2022-10-06 02:53:49 +03:00
program test.aleo {
transition main(a: scalar) -> group {
let b: group = (0, -)group;
return a * b;
}}