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; }