mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 07:32:26 +03:00
7d2cbb2ec2
finished coverage tests. adding case by case tests from the parser fuzzer next
32 lines
227 B
Plaintext
32 lines
227 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;
|
|
|
|
x.y() = y;
|
|
|
|
🦀 = y; |