summaryrefslogtreecommitdiff
path: root/test/files/run/io-position.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/io-position.scala')
-rw-r--r--test/files/run/io-position.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/files/run/io-position.scala b/test/files/run/io-position.scala
deleted file mode 100644
index b227846fb4..0000000000
--- a/test/files/run/io-position.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object Test {
- def main(args: Array[String]): Unit = Console.withErr(Console.out) {
- try {
- xml.parsing.ConstructingParser.fromSource(io.Source.fromString("<foo>"), false).document()
- } catch {
- case e:Exception => println(e.getMessage)
- }
- }
-
-}
-