leo/compiler/tests/address/equal.leo

3 lines
77 B
Plaintext
Raw Normal View History

2020-07-30 10:15:14 +03:00
function main(a: address, b: address, c: bool) {
assert_eq!(a == b, c);
}