Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
override
/
nothingToOverride
/
swapParametersGenericClass.kt
blob: cd62fbb43d0cd81439d537ba40ef3c73841af464 [
file
] [
log
] [
blame
]
// "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
)
{}
}