aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/i941.scala
blob: 75bf4e4482a76898d2a8c6f8b48b21128afe84d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object Test {

  class C[A] {

    def this(y: A) = { this(); foo(y) }

    def foo(x: A): Unit = ()

  }
}