diff --git a/lib/compiler/aro_translate_c.zig b/lib/compiler/aro_translate_c.zig index dd8ca54819..39cdbcba1e 100644 --- a/lib/compiler/aro_translate_c.zig +++ b/lib/compiler/aro_translate_c.zig @@ -971,7 +971,9 @@ fn transFnType( } fn transStmt(c: *Context, node: NodeIndex) TransError!ZigNode { - return transExpr(c, node, .unused); + _ = c; + _ = node; + return error.UnsupportedTranslation; } fn transCompoundStmtInline(c: *Context, compound: NodeIndex, block: *Scope.Block) TransError!void {