mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 15:41:36 +03:00
32 lines
207 B
Plaintext
32 lines
207 B
Plaintext
/*
|
|
namespace: ParseStatement
|
|
expectation: Pass
|
|
*/
|
|
|
|
x = expr;
|
|
|
|
x = ();
|
|
|
|
x = x+y;
|
|
|
|
x = (x,y);
|
|
|
|
x = x();
|
|
|
|
|
|
x[0] = y;
|
|
|
|
x[0u32] = y;
|
|
|
|
x.0 = y;
|
|
|
|
x[1..2] = y;
|
|
|
|
x[..2] = y;
|
|
|
|
x[2..] = y;
|
|
|
|
x[..] = y;
|
|
|
|
x.0[0][..] = y;
|