aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t6957.scala
blob: 4637d4337819a55e4de22864003fa6db1ed3ce67 (plain) (blame)
1
2
3
4
5
6
7
8
object Test {
  def main(args: Array[String]): Unit = {
    class Foo
    class Parent(f:Foo)
    class Child extends Parent({val x=new Foo{}; x})
    new Child
  }
}