Files
kotlin-fork/idea/testData/refactoring/pullUp/k2j/fromClassToClassWithGenerics.kt.after
T

14 lines
278 B
Plaintext
Vendored

// WITH_RUNTIME
interface I
interface Z<T>
class C<W: I> {
inner class B<X: I, Y>(x: X, y: Y): A<X, I, Z<Y>>() {
// INFO: {"checked": "true"}
override fun <S : X> foo(x1: X, x2: Z<X>, y1: Y, y2: Z<Y>, w1: W, w2: Z<W>, s1: S, s2: Z<S>) {
}
}
}