From 70c839f5b87ea8c2579c1438dcd5b05f8118013f Mon Sep 17 00:00:00 2001 From: Mattia Giambirtone Date: Sun, 10 Jul 2022 15:07:57 +0200 Subject: [PATCH] Updated closures test --- tests/closures.pn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/closures.pn b/tests/closures.pn index d98ec01..edb7612 100644 --- a/tests/closures.pn +++ b/tests/closures.pn @@ -1,5 +1,5 @@ fn makeClosure(n: int): fn: int { - # let n = n; # Workaround + let n = n; # Workaround fn inner: int { return n; }