summaryrefslogtreecommitdiff
path: root/test/files/run/t0528.scala
blob: df6d13a17ac98d5800f13f54d01c0018cd4c1768 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
trait Sequ[A] {
  def toArray: Array[T forSome {type T <: A}]
}

class RichStr extends Sequ[Char] {
  // override to a primitive array
  def toArray: Array[Char] = Array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9')
}

object Test extends Application {
  val x: RichStr = new RichStr

  println((x: Sequ[Char]).toArray.deep) // calling through the bridge misses unboxing
}