Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/functionAndProperty/functionAndSetter.fir.kt
T

7 lines
91 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
class C {
fun setX(x: Int) {}
var x: Int = 1
}