summaryrefslogtreecommitdiff
path: root/test/files/specialized/t6035/first_1.scala
blob: 1289e9f48e94c3347311a4edb020e40954b66d44 (plain) (blame)
1
2
3
4
5
trait Foo[@specialized(Int) A] {
  def foo(x: A): A
}

abstract class Inter extends Foo[Int]