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

9 lines
205 B
Kotlin
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(x: List<Set<R>>, y: S) {}
}