fe13f39de9
Local declarations CFA: variable initialization information before them is now taken into account
20 lines
305 B
Kotlin
Vendored
20 lines
305 B
Kotlin
Vendored
public object RefreshQueue {
|
|
|
|
private val any = Any()
|
|
|
|
private val workerThread: Thread = Thread(object : Runnable {
|
|
override fun run() {
|
|
any.hashCode()
|
|
}
|
|
});
|
|
|
|
init {
|
|
workerThread.start()
|
|
}
|
|
}
|
|
|
|
fun box() : String {
|
|
RefreshQueue
|
|
return "OK"
|
|
}
|