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