Files
kotlin-fork/compiler/testData/ir/irText/declarations/parameters/defaultPropertyAccessors.kt
T

15 lines
217 B
Kotlin
Vendored

// FIR_IDENTICAL
val test1 = 42
var test2 = 42
class Host {
val testMember1 = 42
var testMember2 = 42
}
class InPrimaryCtor<T>(
val testInPrimaryCtor1: T,
var testInPrimaryCtor2: Int = 42
)