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

10 lines
195 B
Kotlin
Vendored

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