cgen: fix tests

pull/3951/head
Alexander Medvednikov 2020-03-07 06:02:32 +01:00
parent 260f708bb2
commit 150994a933
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ fn (g mut Gen) stmt(node ast.Stmt) {
ast.ForStmt {
g.write('while (')
g.expr(it.cond)
g.writeln(') { //1')
g.writeln(') {')
for stmt in it.stmts {
g.stmt(stmt)
}