mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Rename test data folder according to the new test naming convention.
This commit is contained in:
12
compiler/testData/loadJava/InnerClassesInGeneric.kt
Normal file
12
compiler/testData/loadJava/InnerClassesInGeneric.kt
Normal file
@@ -0,0 +1,12 @@
|
||||
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()
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user