mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
199 B
Plaintext
11 lines
199 B
Plaintext
|
{
|
||
|
for {let i := 0} iszero(eq(i, 10)) {}
|
||
|
{
|
||
|
function f() { continue }
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// dialect: evmTyped
|
||
|
// ----
|
||
|
// SyntaxError 2592: (61-69): Keyword "continue" needs to be inside a for-loop body.
|