12 lines
199 B
Plaintext
Vendored
12 lines
199 B
Plaintext
Vendored
class C<T : C<T>>
|
|
|
|
interface Base {
|
|
fun foo(c: C<*>)
|
|
}
|
|
|
|
class Derived : Base {
|
|
override fun foo(c: C<*>) {
|
|
<selection><caret>throw UnsupportedOperationException()</selection>
|
|
}
|
|
}
|