summaryrefslogblamecommitdiff
path: root/test/files/pos/bug211.scala
blob: 895fb9a8f177fd7baa0905819e97e0ca29ce3764 (plain) (tree)
1
2
3
4
5
6
7
8

        
                                               




                                         
trait A;
trait B;
class Foo requires (A with B) extends A with B;
object Test extends Application {
  new Foo();
  System.out.println("bug211 completed");
}