mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
12 lines
206 B
Kotlin
12 lines
206 B
Kotlin
import java.lang.Runnable
|
|
import java.lang.Thread
|
|
|
|
class ThreadRunSuperTest : Thread() {
|
|
fun doTest() {
|
|
object : Thread("") {
|
|
override fun run() {
|
|
super.run()
|
|
}
|
|
}.start()
|
|
}
|
|
} |