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