summaryrefslogtreecommitdiff
path: root/test/files/run/t3719.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3719.scala')
-rw-r--r--test/files/run/t3719.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/t3719.scala b/test/files/run/t3719.scala
index 01dc205545..4649f11bb1 100644
--- a/test/files/run/t3719.scala
+++ b/test/files/run/t3719.scala
@@ -1,7 +1,7 @@
object Days extends Enumeration {
type Day = DayValue
val Mon, Tue, Wed, Thu, Fri, Sat, Sun = new DayValue // DayValue
-
+
protected class DayValue extends Val {
def isWeekday: Boolean =
this match {
@@ -21,7 +21,7 @@ object Test extends App {
val d: Day = Mon
d.toString
}
-
+
def nameOfTue(): String = {
import Days._
val d: Day = Tue