From 23a6ce00e28d18337f7d0f38e38e82f418592502 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Wed, 31 Mar 2021 12:28:42 +0300 Subject: [PATCH] ci: fix for `-cflags -Werror` jobs --- vlib/v/ast/ast.v | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vlib/v/ast/ast.v b/vlib/v/ast/ast.v index faa7dbdc6d..844bc8b5b1 100644 --- a/vlib/v/ast/ast.v +++ b/vlib/v/ast/ast.v @@ -38,7 +38,9 @@ pub: pos token.Position } -pub struct EmptyExpr {} +pub struct EmptyExpr { + x int +} pub fn empty_expr() Expr { return EmptyExpr{}