summaryrefslogblamecommitdiff
path: root/test/files/pos/collections.scala
blob: 23b23d016e1be646a28aacdb8c2ea88329420772 (plain) (tree)
1
2
3
4
5
6
7



                                  
                                                                

                                                         







                                                                               
package mixins;

import scala.collection.mutable._;

class Collections extends HashSet[Int] with ObservableSet[Int] {
  override def +=(elem: Int): this.type = super.+=(elem);
  override def -=(elem: Int): this.type = super.-=(elem);
  override def clear: Unit = super.clear;

}

object collections extends Collections;

//class Collections1 extends HashSet[Int] with ObservableSet[Int,Collections1];
//object collections1 extends Collections1;