Files
kotlin-fork/compiler/testData/codegen/box/properties/kt1159.kt
T
Alexander Udalov 41a416da60 Move blackBoxFile() testData to box/ directory
Delete all test methods (and empty test classes), since they'll be
auto-generated
2013-01-28 18:20:17 +04:00

17 lines
284 B
Kotlin

public object RefreshQueue {
private val workerThread: Thread = Thread(object : Runnable {
override fun run() {
workerThread.isInterrupted()
}
});
{
workerThread.start()
}
}
fun box() : String {
RefreshQueue
return "OK"
}