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