Rename test data folder according to the new test naming convention.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package test;
|
||||
|
||||
@java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.CLASS)
|
||||
@AnnotatedAnnotation
|
||||
public @interface AnnotatedAnnotation {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package test
|
||||
|
||||
[AnnotatedAnnotation]
|
||||
public annotation class AnnotatedAnnotation
|
||||
@@ -0,0 +1,5 @@
|
||||
namespace test
|
||||
|
||||
test.AnnotatedAnnotation() public final annotation class test.AnnotatedAnnotation : jet.Any {
|
||||
public final /*constructor*/ fun <init>(): test.AnnotatedAnnotation
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test;
|
||||
|
||||
public class AnnotatedMethod {
|
||||
@Deprecated
|
||||
public void f() { }
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class AnnotatedMethod() : java.lang.Object() {
|
||||
public open Deprecated fun f(): Unit { }
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace test
|
||||
|
||||
public open class test.AnnotatedMethod : java.lang.Object {
|
||||
public final /*constructor*/ fun <init>(): test.AnnotatedMethod
|
||||
public open java.lang.Deprecated() fun f(): jet.Tuple0
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package test;
|
||||
|
||||
public @interface SimpleAnnotation {
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
public annotation class SimpleAnnotation
|
||||
@@ -0,0 +1,5 @@
|
||||
namespace test
|
||||
|
||||
public final annotation class test.SimpleAnnotation : jet.Any {
|
||||
public final /*constructor*/ fun <init>(): test.SimpleAnnotation
|
||||
}
|
||||
Reference in New Issue
Block a user