aboutsummaryrefslogtreecommitdiff
path: root/library
diff options
context:
space:
mode:
Diffstat (limited to 'library')
-rw-r--r--library/test/dotty/ShowTests.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/test/dotty/ShowTests.scala b/library/test/dotty/ShowTests.scala
index 7230106d5..b050ad3ee 100644
--- a/library/test/dotty/ShowTests.scala
+++ b/library/test/dotty/ShowTests.scala
@@ -35,13 +35,13 @@ class ShowTests {
@Test def showCar = {
case class Car(model: String, manufacturer: String, year: Int)
- implicit val showCar = new Show[Car] {
+ implicit val showCar: Show[Car] = new Show[Car] {
def show(c: Car) =
"Car(" + c.model.show + ", " + c.manufacturer.show + ", " + c.year.show + ")"
}
case class Shop(xs: List[Car], name: String)
- implicit val showShop = new Show[Shop] {
+ implicit val showShop: Show[Shop] = new Show[Shop] {
def show(sh: Shop) =
"Shop(" + sh.xs.show + ", " + sh.name.show + ")"
}