summaryrefslogtreecommitdiff
path: root/test/files/run/t1909b.scala
blob: 89b2af57dc6ed0682c3cff378f34dba715c1d973 (plain) (blame)
1
2
3
4
5
6
7
8
9
class Ticket1909 (x: Int) {
  def this() = this({
    def bar() = 5
    bar
  })
}
object Test extends App {
  new Ticket1909()
}