Extract yul syntax tests: for statement

This commit is contained in:
Christian Parpart
2020-10-14 11:23:10 +02:00
parent 2accbbe251
commit c63265ff03
17 changed files with 138 additions and 139 deletions
@@ -0,0 +1,10 @@
{
let x:bool
for {let i := 0 continue} x {i := add(i, 1)}
{
}
}
// ====
// dialect: evmTyped
// ----
// SyntaxError 9615: (31-39): Keyword "continue" in for-loop init block is not allowed.