4255c9f774
Test data and tests themselves are based on compiler/testData/loadJava/compiledJava
23 lines
387 B
Java
Vendored
23 lines
387 B
Java
Vendored
// SKIP_IN_FIR_TEST
|
|
package test;
|
|
|
|
interface Parent1 {
|
|
public static int a = 1;
|
|
public static int b = 2;
|
|
}
|
|
|
|
interface Parent2 {
|
|
public static int d = 1;
|
|
public static int e = 2;
|
|
}
|
|
|
|
enum StaticMembersInEnum implements Parent1, Parent2 {
|
|
ENTRY;
|
|
|
|
public static int b = 3;
|
|
public static int c = 4;
|
|
public static int d = 4;
|
|
|
|
public static void foo() { }
|
|
}
|