43 lines
837 B
Plaintext
Vendored
43 lines
837 B
Plaintext
Vendored
|
|
public final class JvmStaticTest {
|
|
private final byte three = (byte)3;
|
|
private final char d = 'D';
|
|
private static final int one = 1;
|
|
private static final int two = 2;
|
|
public static final char c = 'C';
|
|
public static final JvmStaticTest.Companion Companion = null;
|
|
|
|
public final byte getThree() {
|
|
return 0;
|
|
}
|
|
|
|
public final char getD() {
|
|
return '\u0000';
|
|
}
|
|
|
|
public JvmStaticTest() {
|
|
super();
|
|
}
|
|
|
|
public static final int getOne() {
|
|
return 0;
|
|
}
|
|
|
|
public static final class Companion {
|
|
|
|
private static void one$annotations() {
|
|
}
|
|
|
|
public final int getOne() {
|
|
return 0;
|
|
}
|
|
|
|
public final int getTwo() {
|
|
return 0;
|
|
}
|
|
|
|
private Companion() {
|
|
super();
|
|
}
|
|
}
|
|
} |