mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
13 lines
316 B
Kotlin
13 lines
316 B
Kotlin
package test
|
|
|
|
public open class InnerClassesInGeneric<P, Q>() : java.lang.Object() {
|
|
public open class Inner() : java.lang.Object() {
|
|
}
|
|
|
|
public open class Inner2() : Inner() {
|
|
public open fun iterator() : jet.Iterator<P>? {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|
|
}
|