Files
kotlin-fork/compiler/testData/diagnostics/tests/thisAndSuper/superInExtensionFunctionCall.fir.kt
T

10 lines
183 B
Kotlin
Vendored

// No supertype at all
fun Any.extension(arg: Any?) {}
class A1 {
fun test() {
super.<!UNRESOLVED_REFERENCE!>extension<!>(null) // Call to an extension function
}
}