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