Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
overrideRespectCaretPosition.kt
blob: 91b415ea32d9de7a4e3e98dc03ec670558997f7c [
file
]
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
()
{
}
}