11 lines
184 B
Plaintext
Vendored
11 lines
184 B
Plaintext
Vendored
// "Implement members" "true"
|
|
interface I {
|
|
fun foo()
|
|
}
|
|
|
|
class A : I {
|
|
override fun foo() {
|
|
<caret><selection>throw UnsupportedOperationException()</selection>
|
|
}
|
|
}
|