leo/tests/compiler/group/x_and_y.leo
2022-10-03 14:56:14 -07:00

12 lines
170 B
Plaintext

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