leo/tests/parser/expression/unary/square.leo

15 lines
220 B
Plaintext
Raw Normal View History

2022-06-16 22:06:46 +03:00
/*
namespace: ParseExpression
expectation: Pass
*/
!-xx.square()
x.square().square().square()
-x.square()
(-x).square()
-(x.square())
(-x.square()).square()
!x.square()
(!x).square()
!(x.square())
(!x.square()).square()