mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
10 lines
196 B
Plaintext
Vendored
10 lines
196 B
Plaintext
Vendored
// From KT-1254
|
|
interface T {
|
|
fun Foo() : (String) -> Unit
|
|
}
|
|
|
|
class C : T {
|
|
override fun Foo(): (String) -> Unit {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
} |