summaryrefslogtreecommitdiff
path: root/test/files/pos/bug211.scala
blob: 6c5b73ec4aa66822ee2f54ee7e8b7d24a42f6079 (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 Application {
  new Foo();
  System.out.println("bug211 completed");
}