Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/specialNames/defaults.fir.kt
T

6 lines
126 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
class C {
fun `a$default`(c: C, x: Int, m: Int, mh: Any) {}
fun a(x: Int = 1) {}
}