blob: 0cfb371911fa19dcc8888a72db313af7e4586878 [file] [log] [blame]
// FIR_IDENTICAL
interface Test {
public open fun test()
public open val testProp : Int
}
class SomeTest : Test {
val hello = 12
override fun test() {
<selection><caret>TODO("Not yet implemented")</selection>
}
override val testProp: Int
get() = TODO("Not yet implemented")
/**
* test
*/
fun some() {
}
}