Files
kotlin-fork/idea/testData/codeInsight/overrideImplement/overrideGenericFunction.kt.after
T
2021-05-07 00:40:41 +03:00

11 lines
197 B
Plaintext
Vendored

// FIR_IDENTICAL
interface A<T> {
fun foo(value : T) : Unit = println(value)
}
class C : A<C> {
override fun foo(value: C) {
<selection><caret>super.foo(value)</selection>
}
}