summaryrefslogtreecommitdiff
path: root/test-nsc
diff options
context:
space:
mode:
Diffstat (limited to 'test-nsc')
-rw-r--r--test-nsc/files/run/enumerations.check1
-rw-r--r--test-nsc/files/run/enumerations.scala7
2 files changed, 0 insertions, 8 deletions
diff --git a/test-nsc/files/run/enumerations.check b/test-nsc/files/run/enumerations.check
deleted file mode 100644
index b65db97b5a..0000000000
--- a/test-nsc/files/run/enumerations.check
+++ /dev/null
@@ -1 +0,0 @@
-RBRACE = }
diff --git a/test-nsc/files/run/enumerations.scala b/test-nsc/files/run/enumerations.scala
deleted file mode 100644
index b4bd29d5c3..0000000000
--- a/test-nsc/files/run/enumerations.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-/** Enumerations */
-object Test extends Enumeration {
-
- val RBRACE = Value("}");
-
- def main(args:Array[String]): Unit = Console.println("RBRACE = "+RBRACE);
-}