summaryrefslogtreecommitdiff
path: root/test/files/neg/t1432.scala
blob: 638f36554f20a0863ef1d6e04ffb4e1dd28457d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
object Bug_NoUnique {

  type TypeCon[Env] = (Int, Env=>Double)

  case class Wrap[E](parent:E) {}

  def wrap[E,A,Y](v : (A,E=>Y)) : (A,Wrap[E]=>Y) =
	throw new Error("Body here")

  def test(x : TypeCon[Wrap[Unit]]) : TypeCon[Unit] = wrap(x)
}