summary refs log tree commit diff stats
path: root/tests/closure/tnested.nim
diff options
context:
space:
mode:
authorflywind <43030857+xflywind@users.noreply.github.com>2021-02-08 02:46:07 -0600
committerGitHub <noreply@github.com>2021-02-08 09:46:07 +0100
commitd447c0fe3f39114f0913df5804e5f7a3406d6edb (patch)
treea1ec482ca0b184819dc0fdffe463e53cf6959b72 /tests/closure/tnested.nim
parent4fac8af0c9408ee2a8d454693d17fd84067d24c3 (diff)
downloadNim-d447c0fe3f39114f0913df5804e5f7a3406d6edb.tar.gz
use typeof instead type (#16962)
Diffstat (limited to 'tests/closure/tnested.nim')
-rw-r--r--tests/closure/tnested.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/closure/tnested.nim b/tests/closure/tnested.nim
index 7a1881a60..ca8d0e08b 100644
--- a/tests/closure/tnested.nim
+++ b/tests/closure/tnested.nim
@@ -190,7 +190,7 @@ proc foo() =
   let f = (proc() =
              myDiscard (proc() = echo a)
           )
-  echo name(type(f))
+  echo name(typeof(f))
 
 foo()