14 lines
233 B
Plaintext
Vendored
14 lines
233 B
Plaintext
Vendored
// 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>
|
|
}
|
|
} |