mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-22 09:41:37 +03:00
18 lines
168 B
Plaintext
18 lines
168 B
Plaintext
|
/*
|
||
|
ns: 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 ();
|
||
|
}
|