9f845f0de4
#KT-4892 Fixed
10 lines
176 B
Plaintext
10 lines
176 B
Plaintext
trait A<T> {
|
|
fun foo(value : T) : Unit = println(value)
|
|
}
|
|
|
|
class C : A<C> {
|
|
override fun foo(value: C) {
|
|
<selection><caret>super.foo(value)</selection>
|
|
}
|
|
}
|