aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t211.scala
blob: d51c9706dad0aebbaf40b3f74925b85b13d3c535 (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 App {
  new Foo();
  Console.println("t211 completed");
}