fecf6f9fdf
#KT-6700 Fixed
12 lines
195 B
Plaintext
12 lines
195 B
Plaintext
class C<T : C<T>>
|
|
|
|
trait Base {
|
|
fun foo(c: C<*>)
|
|
}
|
|
|
|
class Derived : Base {
|
|
override fun foo(c: C<*>) {
|
|
<selection><caret>throw UnsupportedOperationException()</selection>
|
|
}
|
|
}
|