10 lines
156 B
Kotlin
Vendored
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
|
|
}
|
|
}
|