aboutsummaryrefslogblamecommitdiff
path: root/tests/untried/neg/t1909-object.scala
blob: 5bb58419b987961bdf7a8c1f4a360f13da9d8602 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                         
class Kaboom(a: Any) {
  def this() = {
    this({
      object InnerTrouble
      InnerTrouble
    })
  }
}

object Test extends App {
  new Kaboom()
}