summaryrefslogtreecommitdiff
path: root/test/pending/pos/t0805.scala
blob: 565a2a6527bd63720b501898e9b7f3859a862aec (plain) (blame)
1
2
3
4
5
6
7
8
9
package fr.up5.mi.noel.scala
object Test {
  def make(t: Test) : Test = TestList(t.args.toList)
}
case class TestList[T](elements: List[T])(implicit f: T => Test)

class Test {
  val args: Array[Test]
}