aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t4461.scala
blob: 0fd82265bb6e8ed7159463aa62913eb906816d7e (plain) (tree)
1
2
3
4
5
6
7





                                 
                                         















                                                                                  
import scala.collection.mutable._
import scala.collection.script._


// #4461
object Test {
  def main(args: Array[String]): Unit = {
    val buf = new ArrayBuffer[Int] with ObservableBuffer[Int]
    buf.subscribe(new Subscriber[Message[Int], ObservableBuffer[Int]] {
      def notify(pub: ObservableBuffer[Int], event: Message[Int]) = println(event)
    })

    buf += 1 // works
    buf ++= Array(2) // works
    buf ++= ArrayBuffer(3, 4) // works
    buf ++= List(5) // works
    buf ++= collection.immutable.Vector(6, 7) // works
    buf.insertAll(7, List(8, 9, 10))
    0 +=: buf
    List(-2, -1) ++=: buf
    buf remove 0
  }
}