Files
kotlin-fork/idea/testData/quickfix/override/nothingToOverride/swapParametersGenericClass.kt.after
T
2015-05-13 16:13:13 +02:00

9 lines
205 B
Plaintext
Vendored

// "Change function signature to 'fun f(y: S, x: List<Set<R>>)'" "true"
interface A<P,Q> {
fun f(a: Q, b: List<Set<P>>)
}
class B<R,S> : A<R,S> {
<caret>override fun f(y: S, x: List<Set<R>>) {}
}