leo/compiler/tests/address/equal.leo

3 lines
83 B
Plaintext
Raw Normal View History

2020-07-30 10:15:14 +03:00
function main(a: address, b: address, c: bool) {
2020-08-17 03:20:47 +03:00
console.assert(a == b == c);
}