summary refs log tree commit diff stats
path: root/tests/generics/tcan_inherit_generic.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/generics/tcan_inherit_generic.nim')
-rw-r--r--tests/generics/tcan_inherit_generic.nim16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/generics/tcan_inherit_generic.nim b/tests/generics/tcan_inherit_generic.nim
deleted file mode 100644
index 331fcfd5c..000000000
--- a/tests/generics/tcan_inherit_generic.nim
+++ /dev/null
@@ -1,16 +0,0 @@
-##
-## can_inherit_generic Nim Module
-##
-## Created by Eric Doughty-Papassideris on 2011-02-16.
-
-type
-  TGen[T] = object of TObject
-    x, y: T
-
-  TSpef[T] = object of TGen[T]
-
-
-var s: TSpef[float]
-s.x = 0.4
-s.y = 0.6
-