Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/respectCaretPosition.kt
T
2015-05-13 16:13:13 +02:00

16 lines
194 B
Kotlin
Vendored

interface Test {
public open fun test()
protected open val testProp : Int
}
class SomeTest : Test {
val hello = 12
<caret>
/**
* test
*/
fun some() {
}
}