leo/tests/compiler/group/x_sign_low.leo

11 lines
169 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-04 00:56:14 +03:00
transition main(a: scalar) -> group {
2022-08-02 01:33:26 +03:00
let b: group = (0, -)group;
return a * b;
}