mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
14 lines
438 B
Java
Vendored
14 lines
438 B
Java
Vendored
public interface TraitClassObjectField {
|
|
@org.jetbrains.annotations.NotNull
|
|
TraitClassObjectField.Companion Companion;
|
|
@org.jetbrains.annotations.Nullable
|
|
java.lang.String x = "";
|
|
|
|
static final class Companion {
|
|
@org.jetbrains.annotations.Nullable
|
|
public static final java.lang.String x = "";
|
|
private static final java.lang.String y;
|
|
|
|
private Companion() { /* compiled code */ }
|
|
}
|
|
} |