summaryrefslogblamecommitdiff
path: root/test/files/run/t3832.scala
blob: ac44358bc751dd9b41677fe773b1847e2205b111 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                           
class t3832 {
  def this(un: Int) = {
    this()
    def bippy = this
    ()
  }
  def this(un: Boolean) = {
    this()
    def boppy = () => this
    ()
  }
}

object Test extends App {
  new t3832(0)
  new t3832(true)
}