aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--library/test/dotty/ShowTests.scala3
1 files changed, 1 insertions, 2 deletions
diff --git a/library/test/dotty/ShowTests.scala b/library/test/dotty/ShowTests.scala
index ef259e5d8..92539d0c4 100644
--- a/library/test/dotty/ShowTests.scala
+++ b/library/test/dotty/ShowTests.scala
@@ -52,8 +52,7 @@ class ShowTests {
@Test def showOptions = {
import Show.Option._
- // TODO: first case is not possible since there's no Show[Nothing] - yet
- //assertEquals("None", None.show)
+ assertEquals("None", None.show)
assertEquals("None", (None: Option[String]).show)
assertEquals("Some(\"hello opt\")", Some("hello opt").show)
}