summaryrefslogtreecommitdiff
path: root/test/files/pos/bug3688-redux.scala
blob: e601cf240c1974f60998ea0c78b836ab334b6c18 (plain) (blame)
1
2
3
4
5
6
7
8
import collection.JavaConverters._
import java.{ util => ju }
import scala.collection.{ mutable, immutable }

object Test {
  def m[P <% AsJava[ju.List[Int]]](l: P) = 1
  m(List(1))
}