solidity/test/libyul/yulSyntaxTests/for_statement_nested_continue.yul

11 lines
199 B
Plaintext
Raw Normal View History

{
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.