4d9b19da82
#KT-18539 Fixed
13 lines
216 B
Plaintext
Vendored
13 lines
216 B
Plaintext
Vendored
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>
|
|
}
|
|
} |