Files
kotlin/compiler/testData/loadJava/compiledKotlin/nested/deepInnerGeneric.txt
Denis Zharkov deea0643ad Refine type arguments resolution and rendering
In case of type constructors captured parameters from outer classes

 #KT-5510 Fixed
 #KT-3112 Fixed
 #KT-6325 Fixed
 #KT-408  Fixed
 #KT-6337 Fixed
2015-11-13 14:47:28 +03:00

20 lines
716 B
Plaintext
Vendored

package test
public final class A</*0*/ TA> {
/*primary*/ public constructor A</*0*/ TA>()
public final inner class B</*0*/ TB> {
/*primary*/ public constructor B</*0*/ TB>()
public final inner class C</*0*/ TC> {
/*primary*/ public constructor C</*0*/ TC>()
public final inner class D</*0*/ TD> {
/*primary*/ public constructor D</*0*/ TD>()
public final fun bar(/*0*/ ta: TA, /*1*/ tb: TB, /*2*/ tc: TC, /*3*/ td: TD): test.A<TA>.B<TB>.C<TC>.D<TD>
public final fun </*0*/ P1, /*1*/ P2, /*2*/ P3, /*3*/ P4> foo(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4): kotlin.Nothing
}
}
}
}