summaryrefslogtreecommitdiff
path: root/test/files/pos/t6664.scala
blob: 7eb85f619d88f3fab81cfe3744a8fc9af75a554d (plain) (blame)
1
2
3
4
final case class A(i: Int, s: String) {
    protected def copy(s2: String): A = A(i, s2)
    protected def copy(i2: Int): A = A(i2, s)
}