aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t5284b.scala
blob: 7f905143e63588f76e22fd716e164be178ce3f2a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                    
                                         















                                                                      
/** Here we have a situation where a normalized method parameter `W`
 *  is used in a position which expects a type `T` - we know we can
 *  safely cast `W` to `T` whenever typebounds of `W` hold.
 */
object Test {
  def main(args: Array[String]): Unit = {
    val foo = Foo.createUnspecialized[Int]
    println(foo.bar(17))
  }
}


object Foo {
  def createUnspecialized[T] = new Foo[T]
}


class Foo[@specialized(Int) T] {
  val id: T => T = x => x

  def bar[@specialized(Int) W <: T, @specialized(Int) S](w: W) = id(w)
}