leo/compiler/tests/field/eq.leo

3 lines
79 B
Plaintext
Raw Normal View History

function main(a: field, b: field, c: bool) {
2020-08-17 05:14:26 +03:00
console.assert(a == b == c);
2020-06-03 02:06:25 +03:00
}