summaryrefslogblamecommitdiff
path: root/test/pending/neg/t0625.scala
blob: a44a04fd97ee33261aa95fcc8151dc49bae434b6 (plain) (tree)
1
2
3
4



                                                                             
object Test {
  def idMap[C[_],T](m: { def map[U](f: T => U): C[U] }): C[T] = m.map(t => t)
  idMap(Some(0))
}