Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
respectCaretPosition.kt
blob: 586e785b21c19459de49ae37b592f2149305e328 [
file
]
interface
Test
{
public
open fun test
()
public
open val testProp
:
Int
}
class
SomeTest
:
Test
{
val hello
=
12
<caret>
/**
* test
*/
fun some
()
{
}
}