Rename test data folder according to the new test naming convention.

This commit is contained in:
Pavel V. Talanov
2012-08-23 14:25:37 +04:00
parent 4bf2b9054a
commit baca087a02
497 changed files with 349 additions and 350 deletions
@@ -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
}