mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-27 12:13:41 +03:00
22 lines
262 B
Plaintext
22 lines
262 B
Plaintext
/*
|
|
namespace: ParseExpression
|
|
expectation: Pass
|
|
*/
|
|
|
|
1u8 < 1u8
|
|
|
|
2u8<3u8
|
|
|
|
1u8 + 2u8 < 3u8 + 4u8
|
|
|
|
!-x.lt(y)
|
|
x.lt(y).lt(y).lt(y)
|
|
-x.lt(y)
|
|
(-x).lt(y)
|
|
-(x.lt(y))
|
|
(-x.lt(y)).lt(y)
|
|
!x.lt(y)
|
|
(!x).lt(y)
|
|
!(x.lt(y))
|
|
(!x.lt(y)).lt(y)
|
|
(x.lt(y) < x.lt(y)).lt(x.lt(y) < x.lt(y)) |