summary refs log tree commit diff stats
path: root/tests/bind/tmixin.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bind/tmixin.nim')
-rw-r--r--tests/bind/tmixin.nim27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/bind/tmixin.nim b/tests/bind/tmixin.nim
deleted file mode 100644
index d841326a5..000000000
--- a/tests/bind/tmixin.nim
+++ /dev/null
@@ -1,27 +0,0 @@
-discard """
-  output: "1\n2"
-"""
-
-type
-  TFoo1 = object of TObject
-    v: int
-  TFoo2 = object of TFoo1
-    v2: int
-
-proc test(f: TFoo1) =
-  echo "1"
-
-proc Foo[T](f: T) =
-  mixin test
-  test(f)
-
-var
-  a: TFoo1
-  b: TFoo2
-
-
-proc test(f: TFoo2) =
-  echo "2"
-
-Foo(a)
-Foo(b)