summaryrefslogtreecommitdiff
path: root/test/files/neg/bug86.scala
blob: a11f49aa9049ec0209bc1e88bd13168566a7e2c6 (plain) (blame)
1
2
3
4
5
6
7
trait Foo();

object foo {
  new Foo();
  new Foo(){};
  new Foo(){0};
}