Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/respectCaretPosition.kt
T
2021-05-07 00:40:41 +03:00

17 lines
208 B
Kotlin
Vendored

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