mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 16:41:42 +03:00
22 lines
198 B
Plaintext
22 lines
198 B
Plaintext
/*
|
|
namespace: ParseExpression
|
|
expectation: Pass
|
|
*/
|
|
|
|
-x
|
|
-x()
|
|
--x
|
|
-!x
|
|
|
|
-5i8
|
|
|
|
x.neg()
|
|
x.neg().neg().neg()
|
|
-x.neg()
|
|
(-x).neg()
|
|
-(x.neg())
|
|
(-x.neg()).neg()
|
|
!x.neg()
|
|
(!x).neg()
|
|
!(x.neg())
|
|
(!x.neg()).neg() |