From 208c91a3749910ff23ae65f7ff36d7b3cf8d62db Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Fri, 11 Mar 2016 11:09:31 +0100 Subject: Fix test cases The test contained an error that was unvovered by the "Nothing is not Nullable" fix. --- tests/pickling/hk.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/pickling') 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] -- cgit v1.2.3