9 lines
167 B
Plaintext
Vendored
9 lines
167 B
Plaintext
Vendored
interface A {
|
|
fun String.foo()
|
|
}
|
|
|
|
class B : A {
|
|
override fun String.foo() {
|
|
<selection><caret>throw UnsupportedOperationException()</selection>
|
|
}
|
|
} |