blob: 059c97ad8b3263726cce43298c8c19fe66d17b96 [file] [log] [blame]
// FIR_IDENTICAL
interface T {
fun foo(a:Int = 1)
}
class C : T {
override fun foo(a: Int) {
<selection><caret>TODO("Not yet implemented")</selection>
}
}