summary refs log tree commit diff stats
path: root/tests/compile/treadln.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/compile/treadln.nim')
-rw-r--r--tests/compile/treadln.nim12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/compile/treadln.nim b/tests/compile/treadln.nim
deleted file mode 100644
index 1117ab5f9..000000000
--- a/tests/compile/treadln.nim
+++ /dev/null
@@ -1,12 +0,0 @@
-# test the improved readline handling that does not care whether its
-# Macintosh, Unix or Windows text format.
-
-var
-  inp: TFile
-  line: string
-
-if open(inp, "readme.txt"):
-  while not EndOfFile(inp):
-    line = readLine(inp)
-    echo("#" & line & "#")
-  close(inp)