summaryrefslogtreecommitdiff
path: root/test/files/run/t5147.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5147.scala')
-rw-r--r--test/files/run/t5147.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/files/run/t5147.scala b/test/files/run/t5147.scala
deleted file mode 100644
index 6261336f74..0000000000
--- a/test/files/run/t5147.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-class Test extends Enumeration {
- val A = Value
-}
-object Test extends Test
-object Test5147 {
- def main(args: Array[String]): Unit = {
- println(Test.A)
- }
-}