summary refs log tree commit diff stats
path: root/tests/rodfiles/hallo2.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rodfiles/hallo2.nim')
-rw-r--r--tests/rodfiles/hallo2.nim17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/rodfiles/hallo2.nim b/tests/rodfiles/hallo2.nim
deleted file mode 100644
index 40fe64cfd..000000000
--- a/tests/rodfiles/hallo2.nim
+++ /dev/null
@@ -1,17 +0,0 @@
-discard """
-  output: "Hello World"
-"""
-
-# Test incremental type information
-
-type
-  TNode = object {.pure.}
-    le, ri: ref TNode
-    data: string
-
-proc newNode(data: string): ref TNode =
-  new(result)
-  result.data = data
-
-echo newNode("Hello World").data
-