summaryrefslogtreecommitdiff
path: root/test/files/pos/bug211.scala
blob: df633d7ade4e29e1763b00f252946b1a095fee9b (plain) (blame)
1
2
3
4
5
6
7
8
trait A;
trait B;
class Foo: (A with B) extends A with B;
object Test with Executable {
  new Foo();
  System.out.println("bug211 completed");
}