Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideRespectCaretPosition.kt
T
2012-04-04 11:53:48 +04:00

17 lines
255 B
Kotlin

open class A() {
open fun foo(value : Int) : Unit = println(value)
open val bar : Int = 0
}
class C : A() {
val constant = 42
// Some comment
<caret>
/*
Some another comment
*/
fun someAnotherFunction() {
}
}