10 lines
175 B
Plaintext
Vendored
10 lines
175 B
Plaintext
Vendored
// FIR_IDENTICAL
|
|
interface T {
|
|
fun foo(a:Int = 1)
|
|
}
|
|
|
|
class C : T {
|
|
override fun foo(a: Int) {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
} |