summaryrefslogtreecommitdiff
path: root/test/files/pos/t6301.scala
blob: fa81bbfa77a00c3a19086152f68aece855552dff (plain) (blame)
1
2
3
4
5
6
7
8
9
trait LoadedOver[@specialized(Int) A] {
  def foo(x: Any): A
  def foo(xs: String): A
}

object Test {
  def loaded: AnyRef with LoadedOver[Int] = sys.error("")
  loaded.foo("")
}