aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t7815.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t7815.scala')
-rw-r--r--tests/untried/pos/t7815.scala30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/untried/pos/t7815.scala b/tests/untried/pos/t7815.scala
new file mode 100644
index 000000000..12a434c5b
--- /dev/null
+++ b/tests/untried/pos/t7815.scala
@@ -0,0 +1,30 @@
+import language.higherKinds
+
+trait Foo[A <: AnyRef] {
+ type Repr
+ def f(a: A): Repr
+ def g(a: A): Option[Repr]
+
+ type M[X]
+ def m(a: A): M[a.type]
+
+ type Id[X] = X
+ def n(a: A): Id[(Repr, M[a.type])]
+
+}
+
+object Foo {
+ type Aux[A <: AnyRef, B] = Foo[A] { type Repr = B; type M[X] = Int }
+
+}
+
+object Main extends App {
+ def mapWithFoo[A <: AnyRef, B](as: List[A])(implicit foo: Foo.Aux[A, B]) = {
+ // Should be Eta expandable because the result type of `f` is not
+ // dependant on the value, it is just `B`.
+ as map foo.f
+ as map foo.g
+ as map foo.m
+ as map foo.n
+ }
+}