leo/tests/compiler/group/x_sign_low.leo
2022-08-01 15:33:26 -07:00

11 lines
167 B
Plaintext

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