| // 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() { | |
| } | |
| } |