Files
kotlin-fork/idea/testData/navigation/implementations/multifile/ImplementMethodInKotlin/ImplementMethodInKotlin.kt
T
2014-01-16 22:11:55 +04:00

12 lines
202 B
Kotlin
Vendored

class TestFromJava() : BaseJava() {
override fun testMethod() {
}
}
fun test() {
BaseJava().testMethod<caret>()
}
// REF: (in TestFromJava).testMethod()
// REF: (in BaseJava).testMethod()