summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
Diffstat (limited to 'compiler')
-rw-r--r--compiler/semstmts.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/semstmts.nim b/compiler/semstmts.nim
index af853ec52..455e06e82 100644
--- a/compiler/semstmts.nim
+++ b/compiler/semstmts.nim
@@ -1771,9 +1771,9 @@ proc semStaticStmt(c: PContext, n: PNode): PNode =
   inc c.inStaticContext
   let a = semStmt(c, n.sons[0])
   dec c.inStaticContext
+  n.sons[0] = a
+  evalStaticStmt(c.module, c.graph, a, c.p.owner)
   when false:
-    n.sons[0] = a
-    evalStaticStmt(c.module, c.graph, a, c.p.owner)
     # for incremental replays, keep the AST as required for replays:
     result = n
   else: