6 lines
151 B
Kotlin
6 lines
151 B
Kotlin
// No supertype at all
|
|
class A1 {
|
|
fun test() {
|
|
<!SUPER_IS_NOT_AN_EXPRESSION!>super<!>.equals(null) // Call to an extension function
|
|
}
|
|
} |