Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/respectCaretPosition.kt
T
2012-04-04 19:15:25 +04:00

16 lines
190 B
Kotlin

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