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