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