mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 08:01:42 +03:00
30 lines
215 B
Plaintext
30 lines
215 B
Plaintext
/*
|
|
namespace: ParseStatement
|
|
expectation: Fail
|
|
*/
|
|
|
|
x::y = y;
|
|
|
|
5 = y;
|
|
|
|
x + x = y;
|
|
|
|
-x = y;
|
|
|
|
!x = y;
|
|
|
|
a? x : x = y;
|
|
|
|
x as u32 = y;
|
|
|
|
[x, x, x] = y;
|
|
|
|
[x; 3] = y;
|
|
|
|
(x, x, x) = y;
|
|
|
|
x {x: y, y: z} = y;
|
|
|
|
x() = y;
|
|
|
|
🦀 = y; |