summaryrefslogtreecommitdiff
path: root/test/files/run/t7700.scala
blob: fd13666467f893355bbbcef9e4d2ca16ee735c45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import scala.annotation._

trait C[@specialized U] {
  @unspecialized
  def foo(u: U): U
  @unspecialized
  def bar[A](u: U) = u
}

object Test {
  def main(args: Array[String]) {
    val declared = classOf[C[_]].getDeclaredMethods.sortBy(_.getName)
    println(declared.mkString("\n"))
    object CInt extends C[Int] { def foo(i: Int) = i }
    object CAny extends C[Any] { def foo(a: Any) = a }
    assert(CInt.foo(1) == 1)
    assert(CAny.foo("") == "")
  }
}