solidity/test/libyul/yulSyntaxTests/for_statement_nested_continue.yul
2020-10-14 11:23:10 +02:00

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.