Files
kotlin/compiler/testData/loadJava/compiledKotlin/dataClass/ParamNameSameToField.kt

7 lines
129 B
Kotlin

//ALLOW_AST_ACCESS
package test
data class A(foo: String, val bar: Int, other: Long) {
val foo = foo
val other = other
}