4d9b19da82
#KT-18539 Fixed
9 lines
158 B
Plaintext
Vendored
9 lines
158 B
Plaintext
Vendored
interface T {
|
|
fun foo(a:Int = 1)
|
|
}
|
|
|
|
class C : T {
|
|
override fun foo(a: Int) {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
} |