aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/partialApplications.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-12-01 12:32:59 +0100
committerMartin Odersky <odersky@gmail.com>2015-12-06 16:09:19 +0100
commitdf00eb195d86a3d1425029f2f2436029a757ee5d (patch)
tree8ecba17ee7babf69f3dbe18f960c21abb95a412d /tests/pos/partialApplications.scala
parent4c8db87e499e3a0f56a89ed0824b27230db32997 (diff)
downloaddotty-df00eb195d86a3d1425029f2f2436029a757ee5d.tar.gz
dotty-df00eb195d86a3d1425029f2f2436029a757ee5d.tar.bz2
dotty-df00eb195d86a3d1425029f2f2436029a757ee5d.zip
Disallow existentially bound parameters as type parameters
Done in order to keep the basics as simple as possible. Treating existentially bound parameters as still instantiatable type parameters does not seem to add anything fundamental, and makes the type system less regular.
Diffstat (limited to 'tests/pos/partialApplications.scala')
-rw-r--r--tests/pos/partialApplications.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/pos/partialApplications.scala b/tests/pos/partialApplications.scala
index 696c544e7..fae6849fc 100644
--- a/tests/pos/partialApplications.scala
+++ b/tests/pos/partialApplications.scala
@@ -27,20 +27,3 @@ object Test {
val ss: RMap[Float, Int] = rs
}
-
-object Test2 {
- type Histogram = Map[_, Int]
-
- type StringlyHistogram = Histogram[_ >: String]
-
- val xs: Histogram[String] = Map[String, Int]()
-
- val ys: StringlyHistogram[String] = xs
-
- val zs: StringlyHistogram = xs
-
- val xs1 = xs
- val ys1 = ys
- val zs1 = zs
-
-}