mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 00:21:31 +00:00
22 lines
367 B
Java
Vendored
22 lines
367 B
Java
Vendored
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() { }
|
|
}
|