11 lines
213 B
Plaintext
Vendored
11 lines
213 B
Plaintext
Vendored
// FIR_IDENTICAL
|
|
// From KT-1254
|
|
interface T {
|
|
fun Foo() : (String) -> Unit
|
|
}
|
|
|
|
class C : T {
|
|
override fun Foo(): (String) -> Unit {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
} |