summaryrefslogblamecommitdiff
path: root/test/files/neg/constrs.scala
blob: 5c4ac071e8da57a3fb85e3473b79a61d51e8fdb2 (plain) (tree)


















                                                                                         
object test {

  abstract class Test(x: int) {
    type T;
    val u = x;
    def this(y: int)(z: int)(t: this.T) = { this(this.u + y + z); System.out.println(x) }
  }

  class Foo(x: int) {
    def this() = this("abc")
    def this(x: String) = this(1)
    def this(x: boolean) = this(x)
  }

  class Bar[a](x: a) {
    def this() = this(1)
  }

}