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

       
                                         







                                                    
// $Id$

abstract class Bug360A requires Bug360C {
  def f: String = "hello";
}
trait Bug360B: Bug360C {
  object d {
    System.out.println(f);
  }
}
abstract class Bug360C extends Bug360A with Bug360B;