aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0053.scala
blob: 44763ef144f323b62e2ec0598f2b96206c5988f3 (plain) (blame)
1
2
3
4
5
6
7
object bug {
  def foobar[c]: Int = {
    class Foo { def foo: Bar = new Bar(); }
    class Bar { def bar: c   = bar; }
    0
  }
}