mirror of
https://github.com/AleoHQ/leo.git
synced 2025-01-02 14:58:05 +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()
|