mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
Moved loadJava "general" tests to subdirectory.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package test;
|
||||
|
||||
public class ConstructorGenericDeep {
|
||||
public <P> ConstructorGenericDeep(java.lang.Class<P> cl) {}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorGenericDeep(p0: java.lang.Class<Any?>?) : java.lang.Object()
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorGenericDeep : java.lang.Object {
|
||||
public constructor ConstructorGenericDeep(/*0*/ p0 : java.lang.Class<jet.Any?>?)
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test;
|
||||
|
||||
public class ConstructorGenericSimple {
|
||||
public <P> ConstructorGenericSimple(P p) {}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorGenericSimple(p0: Any?) : java.lang.Object()
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorGenericSimple : java.lang.Object {
|
||||
public constructor ConstructorGenericSimple(/*0*/ p0 : jet.Any?)
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test;
|
||||
|
||||
public class ConstructorGenericUpperBound {
|
||||
public <P extends java.util.RandomAccess> ConstructorGenericUpperBound(P p) {}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorGenericUpperBound(p0: java.util.RandomAccess?) : java.lang.Object()
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class ConstructorGenericUpperBound : java.lang.Object {
|
||||
public constructor ConstructorGenericUpperBound(/*0*/ p0 : java.util.RandomAccess?)
|
||||
}
|
||||
Reference in New Issue
Block a user