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

10 lines
156 B
Kotlin
Vendored

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