leo/tests/parser/expression/binary/gt.leo
Alessandro Coglio 62f2267c2b [parser] Fix parsing of ordering expressions.
Follow the grammar rule. The ordering operators are not associative.

Split previous tests into succeeding and failing ones.

Refresh expectations of old test files.

Add expectations of new test files.
2022-05-10 23:32:46 -07:00

10 lines
93 B
Plaintext

/*
namespace: ParseExpression
expectation: Pass
*/
1u8 > 1u8
2u8>3u8
1u8 + 2u8 > 3u8 + 4u8