aboutsummaryrefslogtreecommitdiff
path: root/tests/pos
diff options
context:
space:
mode:
authorodersky <odersky@gmail.com>2015-06-19 10:31:33 +0200
committerodersky <odersky@gmail.com>2015-06-19 10:31:33 +0200
commitc89e85c45ad3f0398990526572f071f35e781baf (patch)
treee2c327b77bc1abc00716c52fd08e89caf2de3802 /tests/pos
parent2ce159fa1707c1e57e22af9b2fe5a87fee94ee8d (diff)
parent310615e717262243aa899959c3178d7465af74a7 (diff)
downloaddotty-c89e85c45ad3f0398990526572f071f35e781baf.tar.gz
dotty-c89e85c45ad3f0398990526572f071f35e781baf.tar.bz2
dotty-c89e85c45ad3f0398990526572f071f35e781baf.zip
Merge pull request #599 from dotty-staging/add/existential-skolemization
Tighten comparison of skolem types
Diffstat (limited to 'tests/pos')
-rw-r--r--tests/pos/i583a.scala20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/pos/i583a.scala b/tests/pos/i583a.scala
new file mode 100644
index 000000000..a97a3998b
--- /dev/null
+++ b/tests/pos/i583a.scala
@@ -0,0 +1,20 @@
+object Test1 {
+
+ class Box[B](x: B)
+
+ class C {
+ type T
+ val box: Box[T] = ???
+ def f(x: T): T = ???
+ def x: T = ???
+ }
+
+ def c: C = new C
+
+ val b = c.box
+
+ val f = c.f _
+
+}
+
+