Updated closures test

This commit is contained in:
Mattia Giambirtone 2022-07-10 15:07:57 +02:00
parent 39d1eab234
commit 70c839f5b8
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
fn makeClosure(n: int): fn: int {
# let n = n; # Workaround
let n = n; # Workaround
fn inner: int {
return n;
}