Files
kotlin-fork/compiler/testData/diagnostics/tests/inference/reportingImprovements/wrongArgumentExtensionFunction.fir.kt
T

8 lines
148 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
class A
fun A.fn(b: Int): Nothing = TODO()
fun A.run() {
"".apply { <!INAPPLICABLE_CANDIDATE!>fn<!>("") }
}