mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
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>
|
|
}
|
|
} |