summary refs log tree commit diff stats
path: root/tests/generics/t3977.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/generics/t3977.nim')
-rw-r--r--tests/generics/t3977.nim14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/generics/t3977.nim b/tests/generics/t3977.nim
deleted file mode 100644
index eed1a7d63..000000000
--- a/tests/generics/t3977.nim
+++ /dev/null
@@ -1,14 +0,0 @@
-discard """
-  output: "42\n42"
-"""
-
-type
-  Foo[N: static[int]] = object
-
-proc foo[N](x: Foo[N]) =
-  let n = N
-  echo N
-  echo n
-
-var f1: Foo[42]
-f1.foo