Moved loadJava "general" tests to subdirectory.

This commit is contained in:
Evgeny Gerashchenko
2013-03-06 15:41:14 +04:00
parent 7336ec8781
commit 189b043c8d
477 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
package test;
public class ConstructorGenericDeep {
public <P> ConstructorGenericDeep(java.lang.Class<P> cl) {}
}

View File

@@ -0,0 +1,3 @@
package test
public open class ConstructorGenericDeep(p0: java.lang.Class<Any?>?) : java.lang.Object()

View File

@@ -0,0 +1,5 @@
package test
public open class ConstructorGenericDeep : java.lang.Object {
public constructor ConstructorGenericDeep(/*0*/ p0 : java.lang.Class<jet.Any?>?)
}

View File

@@ -0,0 +1,5 @@
package test;
public class ConstructorGenericSimple {
public <P> ConstructorGenericSimple(P p) {}
}

View File

@@ -0,0 +1,3 @@
package test
public open class ConstructorGenericSimple(p0: Any?) : java.lang.Object()

View File

@@ -0,0 +1,5 @@
package test
public open class ConstructorGenericSimple : java.lang.Object {
public constructor ConstructorGenericSimple(/*0*/ p0 : jet.Any?)
}

View File

@@ -0,0 +1,5 @@
package test;
public class ConstructorGenericUpperBound {
public <P extends java.util.RandomAccess> ConstructorGenericUpperBound(P p) {}
}

View File

@@ -0,0 +1,3 @@
package test
public open class ConstructorGenericUpperBound(p0: java.util.RandomAccess?) : java.lang.Object()

View File

@@ -0,0 +1,5 @@
package test
public open class ConstructorGenericUpperBound : java.lang.Object {
public constructor ConstructorGenericUpperBound(/*0*/ p0 : java.util.RandomAccess?)
}