blob: 6ead03a16cd0ac42d22e031b840f055388f0e474 [file] [log] [blame]
// FIR_IDENTICAL
interface T {
fun getFoo(): String = ""
}
interface U {
fun getFoo(): String
}
class C1 : T, U {
override fun getFoo(): String {
<selection><caret>TODO("Not yet implemented")</selection>
}
}