Files
kotlin-fork/native/native.tests/testData/framework/objcexport/dataClassComponentMethods.kt
T
2024-02-05 16:06:34 +00:00

32 lines
779 B
Kotlin
Vendored

/*
* Copyright 2010-2022 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the LICENSE file.
*/
package dataClassComponentMethods
data class DataClassWithExplicitComponentMethod(val x: Int, val y: Int) {
fun component1(arg: Int): Int {
return arg + x
}
}
interface ComponentInterface {
fun component1(): Int
}
data class DataClassWithInheritedComponentMethod(val x: Int) : ComponentInterface
class RegularClassWithComponentMethods {
fun component1() = 3
fun component3() = 4
}
fun component1() = 5
fun component4() = 6
data class DataClassWithStrangeNames(val component124: Int, val componentABC: Int) {
operator fun component15() = component124
fun component16() = component124
}