Files
kotlin-fork/compiler/testData/diagnostics/tests/secondaryConstructors/thisNonExisting.fir.kt
T

9 lines
189 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
// !WITH_NEW_INFERENCE
class A {
constructor(x: Int) {}
constructor(x: String) {}
constructor(): <!INAPPLICABLE_CANDIDATE!>this<!>('a') {}
}