aboutsummaryrefslogtreecommitdiff
path: root/tests/run/generic/Color.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/generic/Color.scala')
-rw-r--r--tests/run/generic/Color.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/run/generic/Color.scala b/tests/run/generic/Color.scala
index 183f18349..7f2a8818c 100644
--- a/tests/run/generic/Color.scala
+++ b/tests/run/generic/Color.scala
@@ -13,7 +13,8 @@ sealed trait Color extends Enum
object Color {
private val $values = new runtime.EnumValues[Color]
- def valueOf: Int => Color = $values
+ def valueOf = $values.fromInt
+ def withName = $values.fromName
def values = $values.values
private def $new(tag: Int, name: String) = new Color {