aboutsummaryrefslogtreecommitdiff
path: root/tests/pickling
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pickling')
-rw-r--r--tests/pickling/hk.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pickling/hk.scala b/tests/pickling/hk.scala
index 9fdaf94f6..a8f2aa597 100644
--- a/tests/pickling/hk.scala
+++ b/tests/pickling/hk.scala
@@ -31,7 +31,7 @@ object higherKinded {
}
class Ident[-T >: Untyped] extends Tree[T] {
- type ThisType[-U] = Ident[U]
+ type ThisType[-U >: Untyped] = Ident[U]
}
val id = new Ident[Integer]