summary refs log tree commit diff stats
path: root/tests/distinct/tborrowdot.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/distinct/tborrowdot.nim')
-rw-r--r--tests/distinct/tborrowdot.nim13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/distinct/tborrowdot.nim b/tests/distinct/tborrowdot.nim
deleted file mode 100644
index 820ee3b71..000000000
--- a/tests/distinct/tborrowdot.nim
+++ /dev/null
@@ -1,13 +0,0 @@
-
-type
-  Foo = object
-    a, b: int
-    s: string
-
-  Bar {.borrow: `.`.} = distinct Foo
-
-var bb: ref Bar
-new bb
-bb.a = 90
-bb.s = "abc"
-