leo/compiler/tests/field/eq.leo

3 lines
73 B
Plaintext
Raw Normal View History

function main(a: field, b: field, c: bool) {
assert_eq!(a == b, c);
2020-06-03 02:06:25 +03:00
}