From 3edccb615db7d46434500829056c0f128fac0453 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sun, 7 Mar 2021 12:18:00 +0100 Subject: [PATCH] Examples/test-suite/grouping.i: resolve compiler warning. --- Examples/test-suite/grouping.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/test-suite/grouping.i b/Examples/test-suite/grouping.i index 5632231d0..24acf6922 100644 --- a/Examples/test-suite/grouping.i +++ b/Examples/test-suite/grouping.i @@ -14,7 +14,7 @@ int *(test2)(int x) { return &y; } -int (test3) = 37; +int test3 = 37; typedef Integer (UnaryOp)(Integer);