summaryrefslogtreecommitdiff
path: root/test/files/neg/t2296a/S.scala
blob: 532d038a42ac05d4404526db23d7579ca14ec837 (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

  trait S extends J {
    def bar() {
      foo()
    }
  }

  class SC extends J with S
}

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