summaryrefslogblamecommitdiff
path: root/test/files/pos/t2613.scala
blob: 3a64dbc282229834ee84c26bc400c1a8d3cd0ce8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                                                    
import language.existentials

object Test {
  class Row

  abstract class MyRelation [R <: Row, +Relation <: MyRelation[R, Relation]]

  type M = MyRelation[R, Relation] forSome {type R <: Row; type Relation <: MyRelation[R, Relation]}

  var (x,y): (String, M) = null
}