diff options
Diffstat (limited to 'tests/misc/tlocals.nim')
-rw-r--r-- | tests/misc/tlocals.nim | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/misc/tlocals.nim b/tests/misc/tlocals.nim deleted file mode 100644 index 09b7432f5..000000000 --- a/tests/misc/tlocals.nim +++ /dev/null @@ -1,11 +0,0 @@ -discard """ - output: '''(x: "string here", a: 1)''' -""" - -proc simple[T](a: T) = - var - x = "string here" - echo locals() - -simple(1) - |