summaryrefslogtreecommitdiff
path: root/test/files/pos/hkrange.scala
blob: 8d61167ad851f9e94976b3125c063dd6beeca74c (plain) (blame)
1
2
3
4
5
class A {
  def f[CC[X] <: Traversable[X]](x: CC[Int]) = ()
  
  f(1 to 5)
}