mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-26 03:33:44 +03:00
15 lines
287 B
Plaintext
15 lines
287 B
Plaintext
/*
|
|
namespace: ParseExpression
|
|
expectation: Pass
|
|
*/
|
|
|
|
x.abs_wrapped()
|
|
x.abs_wrapped().abs_wrapped().abs_wrapped()
|
|
-x.abs_wrapped()
|
|
(-x).abs_wrapped()
|
|
-(x.abs_wrapped())
|
|
(-x.abs_wrapped()).abs_wrapped()
|
|
!x.abs_wrapped()
|
|
(!x).abs_wrapped()
|
|
!(x.abs_wrapped())
|
|
(!x.abs_wrapped()).abs_wrapped() |