aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/scala2traits/dotty-subclass.scala
blob: 4e162dd145e29768e7d9fc7765695b0dc0fdc430 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// This is supposed to be compiled by Dotty
class Sub extends T

class A extends S2T with S2Tprivate {
  val a: Int = 3
  var b = 2
}

object Main {
  def main(args: Array[String]): Unit = {
    val sub = new Sub
    println(sub.d)
    println(sub.v)
    println(sub.O)
    println(sub.w)

    val a = new A
    a.x += a.y
    println(a.x)
    println(a.f(a.a + a.b))

    a.xx += a.yy
    println(a.x)
    println(a.ff(a.xx))
  }
}