Files
kotlin/idea/testData/codeInsight/overrideImplement/respectCaretPosition.kt
2015-10-07 11:57:14 +03:00

16 lines
191 B
Kotlin
Vendored

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