summaryrefslogtreecommitdiff
path: root/test/files/neg/t1909b.scala
blob: 6aa78704782da77dfa2cbeb158de726131468432 (plain) (blame)
1
2
3
4
5
6
7
class Ticket1909 (x: Int) {
  var z = 12
  def this() = this({
    def bar() = this.z + 5
    bar
  })
}