mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
10 lines
268 B
Plaintext
Vendored
10 lines
268 B
Plaintext
Vendored
// From KT-1254
|
|
interface T {
|
|
fun Foo() : (String) -> Unit
|
|
}
|
|
|
|
class C : T {
|
|
override fun Foo(): (String) -> Unit {
|
|
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
|
}
|
|
} |