Files
kotlin-fork/compiler/testData/diagnostics/tests/thisAndSuper/superInToplevelFunction.kt
T
2012-11-20 19:53:03 +04:00

5 lines
231 B
Kotlin

fun foo() {
<!SUPER_IS_NOT_AN_EXPRESSION!>super<!>
<!SUPER_NOT_AVAILABLE!>super<!>.<!DEBUG_INFO_ELEMENT_WITH_ERROR_TYPE!>foo<!>()
<!SUPER_NOT_AVAILABLE!>super<Nothing><!>.<!DEBUG_INFO_ELEMENT_WITH_ERROR_TYPE!>foo<!>()
}