mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
21 lines
496 B
Plaintext
Vendored
21 lines
496 B
Plaintext
Vendored
package test
|
|
|
|
public/*package*/ open class InnerClassOfGeneric {
|
|
public/*package*/ constructor InnerClassOfGeneric()
|
|
|
|
// Static members
|
|
public open fun main(/*0*/ kotlin.Array<(out) kotlin.String!>!): kotlin.Unit
|
|
}
|
|
|
|
public final class Outer</*0*/ T> {
|
|
public constructor Outer</*0*/ T>()
|
|
|
|
public final inner class Inner {
|
|
public constructor Inner(/*0*/ kotlin.List<T>)
|
|
}
|
|
|
|
public final inner class InnerSimple {
|
|
public constructor InnerSimple()
|
|
}
|
|
}
|