mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 11:50:54 +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()
|
|
}
|
|
} |