summaryrefslogtreecommitdiff
path: root/test/files/neg/altherr2.scala
blob: 6ab26526f7311581fcbfe8485daeec4473de301d (plain) (blame)
1
2
3
4
5
6
7
trait Foo[a];

object Bug {
  def foo[a](): Foo[a] = foo[a]();
  foo()[Int];
}