summaryrefslogtreecommitdiff
path: root/test/files/pos/tcpoly_subst.scala
blob: f8ddb9a715ed1bda373d3c82b2355cfe47e30230 (plain) (blame)
1
2
3
4
object test {
  def make[m[x], b]: m[b] = error("foo")
  val lst: List[Int] = make[List, Int]
}