Files
kotlin-fork/compiler/testData/diagnostics/tests/thisAndSuper/superInExtensionFunctionCall.kt
T
2016-01-22 05:54:38 +03:00

10 lines
218 B
Kotlin
Vendored

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