Files
kotlin-fork/compiler/testData/cli/jvm/progressive/dataClassOverridingCopy.kt
T
2018-05-18 16:16:23 +03:00

5 lines
111 B
Kotlin
Vendored

interface WithCopy<T> {
fun copy(str: T): WithCopy<T>
}
data class Test(val str: String): WithCopy<String>