leo/tests/compiler/group/point_input.leo

10 lines
145 B
Plaintext
Raw Normal View History

2022-08-02 01:33:26 +03:00
/*
namespace: Compile
expectation: Pass
input_file: inputs/point.in
*/
@program
2022-08-02 01:33:26 +03:00
function main(a: group) -> bool {
return a == (0, 1)group;
}