a33f946c14
#KT-11115 Fixed (cherry picked from commit a3a2e57)
13 lines
288 B
Plaintext
Vendored
13 lines
288 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 implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
|
}
|
|
} |