10 lines
174 B
Plaintext
Vendored
10 lines
174 B
Plaintext
Vendored
// FIR_IDENTICAL
|
|
interface A {
|
|
fun String.foo()
|
|
}
|
|
|
|
class B : A {
|
|
override fun String.foo() {
|
|
<selection><caret>TODO("Not yet implemented")</selection>
|
|
}
|
|
} |