blob: f75697a9f8e94ddacd883ff6ceb7897eb4748fc7 [file] [log] [blame]
// 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>
}
}