aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/tycons.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/tycons.scala')
-rw-r--r--tests/pos/tycons.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pos/tycons.scala b/tests/pos/tycons.scala
index ef16a7792..1ed4d2855 100644
--- a/tests/pos/tycons.scala
+++ b/tests/pos/tycons.scala
@@ -16,7 +16,7 @@ abstract class Functor[F <: TypeConstructor] {
def map[A, B](f: F { type TypeArg <: A }): F { type TypeArg <: B }
}
-implicit object ListFunctor extends Functor[List] {
+object ListFunctor extends Functor[List] {
override def map[A, B](f: List { type TypeArg <: A }): List { type TypeArg <: B } = ???
}