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