leo/tests/parser/expression/binary/shr_wrapped.leo
2022-06-16 12:53:53 -07:00

16 lines
392 B
Plaintext

/*
namespace: ParseExpression
expectation: Pass
*/
!-x.shr_wrapped(y)
x.shr_wrapped(y).shr_wrapped(y).shr_wrapped(y)
-x.shr_wrapped(y)
(-x).shr_wrapped(y)
-(x.shr_wrapped(y))
(-x.shr_wrapped(y)).shr_wrapped(y)
!x.shr_wrapped(y)
(!x).shr_wrapped(y)
!(x.shr_wrapped(y))
(!x.shr_wrapped(y)).shr_wrapped(y)
(x.shr_wrapped(y) >> x.shr_wrapped(y)).shr_wrapped(x.shr_wrapped(y) >> x.shr_wrapped(y))