4d9b19da82
#KT-18539 Fixed
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>
|
|
}
|
|
} |