7 lines
161 B
Kotlin
Vendored
7 lines
161 B
Kotlin
Vendored
// !LANGUAGE: -ProhibitDataClassesOverridingCopy
|
|
|
|
interface WithCopy<T> {
|
|
fun copy(str: T): WithCopy<T>
|
|
}
|
|
|
|
data class Test(val str: String): WithCopy<String> |