dd051c1556
Previously the annotations were included in reverse order. With this change they are kept in the same order as in the source file. This changes the test case for KT-23427 but that issue seems to relate to annotation arguments that are missing, not the order of repeatable annotations. This fixes KT-51087
29 lines
443 B
Plaintext
Vendored
29 lines
443 B
Plaintext
Vendored
package te.st.a;
|
|
|
|
public class JavaClass {
|
|
|
|
public JavaClass() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
package te.st.a;
|
|
|
|
import te.st.a.$Test.Inner;
|
|
import te.st.a.Test$.Inner$;
|
|
|
|
@kotlin.Metadata()
|
|
@kotlin.Suppress(names = {"UNRESOLVED_REFERENCE"})
|
|
public final class TestKt {
|
|
|
|
public TestKt() {
|
|
super();
|
|
}
|
|
|
|
public static final void a(@org.jetbrains.annotations.NotNull()
|
|
te.st.a.$Test.Inner a) {
|
|
}
|
|
}
|