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