Files
kotlin-fork/idea/testData/intentions/declarations/convertMemberToExtension/override.kt
T

9 lines
104 B
Kotlin
Vendored

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