mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
Fix for KT-9692: Deadlock between <clinit> of a class (KtSimpleNameExpressionImpl) and <clinit> of its companion object #KT-9692 Fixed
7 lines
124 B
Java
Vendored
7 lines
124 B
Java
Vendored
public class CompanionInitialization {
|
|
|
|
public static Object getCompanion() {
|
|
return IStatic.Companion;
|
|
}
|
|
|
|
} |