mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-12 15:52:11 +00:00
Fix for KT-9692: Deadlock between <clinit> of a class (KtSimpleNameExpressionImpl) and <clinit> of its companion object #KT-9692 Fixed
28 lines
798 B
Java
Vendored
28 lines
798 B
Java
Vendored
public interface TraitClassObjectField {
|
|
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 = "";
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
public static final TraitClassObjectField.Companion INSTANCE;
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
@org.jetbrains.annotations.Nullable
|
|
public final java.lang.String getX() { /* compiled code */ }
|
|
|
|
private final java.lang.String getY() { /* compiled code */ }
|
|
|
|
private Companion() { /* compiled code */ }
|
|
}
|
|
|
|
static final class DefaultImpls {
|
|
}
|
|
} |