aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/t2296b/S_2.scala
blob: 786ba0bfca6e1a79f425787959daf901c7dcd486 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package s {
  import j.J_1

  trait S extends J_1 {
    def bar(): Unit = {
      foo()
    }
  }

  class SC extends J_1 with S
}

object Test {
  def main(args : Array[String]): Unit = {
    (new s.SC).bar()
    (new s.S { }).bar()
  }
}