Rename test data folder according to the new test naming convention.
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 @@
|
||||
namespace test
|
||||
|
||||
public open class test.ConstructorGenericDeep : java.lang.Object {
|
||||
public final /*constructor*/ fun <init>(/*0*/ p0: java.lang.Class<jet.Any?>?): test.ConstructorGenericDeep
|
||||
}
|
||||
@@ -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 @@
|
||||
namespace test
|
||||
|
||||
public open class test.ConstructorGenericSimple : java.lang.Object {
|
||||
public final /*constructor*/ fun <init>(/*0*/ p0: jet.Any?): test.ConstructorGenericSimple
|
||||
}
|
||||
@@ -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 @@
|
||||
namespace test
|
||||
|
||||
public open class test.ConstructorGenericUpperBound : java.lang.Object {
|
||||
public final /*constructor*/ fun <init>(/*0*/ p0: java.util.RandomAccess?): test.ConstructorGenericUpperBound
|
||||
}
|
||||
Reference in New Issue
Block a user