summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-11-04 21:47:55 +0000
committerPaul Phillips <paulp@improving.org>2011-11-04 21:47:55 +0000
commit4474d9ba205d2276de8567151b5ed3f2c6f75b5e (patch)
tree7b559997abe61f39d899b85ea1e0215af0eac775 /test/files
parent8901935da87b46c049d3aca4b48d2729e5ccb74a (diff)
downloadscala-4474d9ba205d2276de8567151b5ed3f2c6f75b5e.tar.gz
scala-4474d9ba205d2276de8567151b5ed3f2c6f75b5e.tar.bz2
scala-4474d9ba205d2276de8567151b5ed3f2c6f75b5e.zip
Revert "Fix for Enumeration."
Oops, didn't mean to commit that one. Opens SI-5147. No review.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/t5147.check1
-rw-r--r--test/files/run/t5147.scala9
2 files changed, 0 insertions, 10 deletions
diff --git a/test/files/run/t5147.check b/test/files/run/t5147.check
deleted file mode 100644
index f70f10e4db..0000000000
--- a/test/files/run/t5147.check
+++ /dev/null
@@ -1 +0,0 @@
-A
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)
- }
-}