leo/tests/compiler/group/x_sign_high.leo
2022-08-04 20:00:40 -07:00

12 lines
176 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: inputs/scalar_group.in
*/
@program
function main(a: scalar) -> group {
let b: group = (0, +)group;
return a * b;
}