aboutsummaryrefslogtreecommitdiff
path: root/tests/pickling
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-03-11 11:09:31 +0100
committerMartin Odersky <odersky@gmail.com>2016-03-11 11:09:31 +0100
commit208c91a3749910ff23ae65f7ff36d7b3cf8d62db (patch)
tree8cd20ea218e1b16346097f48d29aa477d3f1269f /tests/pickling
parent65639176ce59fd64cbecd90bf5680e64e471938f (diff)
downloaddotty-208c91a3749910ff23ae65f7ff36d7b3cf8d62db.tar.gz
dotty-208c91a3749910ff23ae65f7ff36d7b3cf8d62db.tar.bz2
dotty-208c91a3749910ff23ae65f7ff36d7b3cf8d62db.zip
Fix test cases
The test contained an error that was unvovered by the "Nothing is not Nullable" fix.
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]