dfdd107fc0
Update expected outputs so they match the new sorting rules.
68 lines
1.5 KiB
Plaintext
Vendored
68 lines
1.5 KiB
Plaintext
Vendored
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public abstract interface FooComponent {
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final FooComponent.Companion Companion = null;
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static java.lang.String create(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String context) {
|
|
return null;
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class Companion {
|
|
|
|
private Companion() {
|
|
super();
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String create(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String context) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public final class JvmStaticTest {
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final JvmStaticTest.Companion Companion = null;
|
|
private static final int one = 1;
|
|
public static final int two = 2;
|
|
public static final char c = 'C';
|
|
public final byte three = (byte)3;
|
|
public final char d = 'D';
|
|
|
|
public JvmStaticTest() {
|
|
super();
|
|
}
|
|
|
|
public static final int getOne() {
|
|
return 0;
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class Companion {
|
|
|
|
private Companion() {
|
|
super();
|
|
}
|
|
|
|
public final int getOne() {
|
|
return 0;
|
|
}
|
|
|
|
@java.lang.Deprecated()
|
|
public static void getOne$annotations() {
|
|
}
|
|
}
|
|
}
|