summaryrefslogtreecommitdiff
path: root/test/files/pos/t1909b-pos.scala
blob: b914bee3665f11920b15db815ebe7f40b8d6336c (plain) (blame)
1
2
3
4
5
6
class Ticket1909 (x: Int) {
  def this() = this({
    def bar() = 5
    bar
  })
}