leo/compiler/tests/group/add.leo

3 lines
73 B
Plaintext
Raw Normal View History

2020-07-30 22:54:34 +03:00
function main(a: group, b: group, c: group) {
assert_eq!(a + b, c);
2020-05-31 01:37:11 +03:00
}