solidity/test/libyul/yulSyntaxTests/for_statement_nested_continue.yul
2022-04-01 23:41:18 -05:00

11 lines
210 B
Plaintext

{
for {let i := 0} iszero(eq(i, 10)) {}
{
function f() { continue }
}
}
// ====
// dialect: evmTyped
// ----
// SyntaxError 2592: (61-69='continue'): Keyword "continue" needs to be inside a for-loop body.