summary refs log tree commit diff stats
path: root/tests/rodfiles/amethods.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rodfiles/amethods.nim')
-rw-r--r--tests/rodfiles/amethods.nim13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/rodfiles/amethods.nim b/tests/rodfiles/amethods.nim
deleted file mode 100644
index 29cf757f7..000000000
--- a/tests/rodfiles/amethods.nim
+++ /dev/null
@@ -1,13 +0,0 @@
-
-type
-  TBaseClass* = object of RootObj
-
-proc newBaseClass*: ref TBaseClass =
-  new result
-
-method echoType*(x: ref TBaseClass) {.base.} =
-  echo "base class"
-
-proc echoAlias*(x: ref TBaseClass) =
-  echoType x
-