aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/subtyping.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/neg/subtyping.scala')
-rw-r--r--tests/neg/subtyping.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/neg/subtyping.scala b/tests/neg/subtyping.scala
index 27cc0568e..351fa0ecd 100644
--- a/tests/neg/subtyping.scala
+++ b/tests/neg/subtyping.scala
@@ -8,7 +8,7 @@ object Test {
implicitly[B#X <:< A#X] // error: no implicit argument
}
def test2(): Unit = {
- val a : { type T; type U } = ??? // error // error
+ val a : { type T; type U } = ???
implicitly[a.T <:< a.U] // error: no implicit argument
}
}