Files
kotlin-fork/idea/testData/intentions/declarations/convertMemberToExtension/override.kt
T
2015-09-22 15:00:24 +02:00

9 lines
108 B
Kotlin
Vendored

// IS_APPLICABLE: false
interface I {
fun foo()
}
class C : I {
override fun <caret>foo() {
}
}