Revert "Fix JvmRuntimeDescriptorLoaderTestGenerated"

This reverts commit 33e9e660c4.
This commit is contained in:
Mikhail Zarechenskiy
2017-03-23 14:07:34 +03:00
committed by Ilya Gorbunov
parent 266aedeebe
commit 3073ba58a3
11 changed files with 70 additions and 16 deletions

View File

@@ -0,0 +1,14 @@
package test
public open class InnerClassesInGeneric</*0*/ P : kotlin.Any!, /*1*/ Q : kotlin.Any!> {
public constructor InnerClassesInGeneric</*0*/ P : kotlin.Any!, /*1*/ Q : kotlin.Any!>()
public open inner class Inner /*captured type parameters: /*0*/ P : kotlin.Any!, /*1*/ Q : kotlin.Any!*/ {
public constructor Inner()
}
public open inner class Inner2 /*captured type parameters: /*0*/ P : kotlin.Any!, /*1*/ Q : kotlin.Any!*/ : test.InnerClassesInGeneric<kotlin.Any!, kotlin.Any!>.Inner {
public constructor Inner2()
public open operator fun iterator(): kotlin.collections.(Mutable)Iterator<P!>!
}
}