mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 07:32:26 +03:00
18 lines
175 B
Plaintext
18 lines
175 B
Plaintext
/*
|
|
namespace: ParseStatement
|
|
expectation: Pass
|
|
*/
|
|
|
|
for x in 0..7 {}
|
|
|
|
for x in 0..7 {
|
|
return ();
|
|
}
|
|
|
|
for x in 0..99u8 {
|
|
return ();
|
|
}
|
|
|
|
for x in 0..Self {
|
|
return ();
|
|
} |