leo/tests/compiler/address/lte_fail.leo

13 lines
234 B
Plaintext
Raw Normal View History

2022-07-03 04:15:18 +03:00
/*
namespace: Compile
expectation: Fail
input_file:
- inputs/address1.in
*/
function main(x: address) -> bool {
const sender: address = aleo10qerras5799u6k7rjtc9y3hcwxuykr45qra7x7dp6jgnc0923czqm0lgta;
return x <= sender;
}