1635018fe7
#KT-11807 Fixed
11 lines
291 B
Plaintext
Vendored
11 lines
291 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("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
|
}
|
|
} |