59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
14 lines
223 B
Kotlin
14 lines
223 B
Kotlin
// KT-588 Unresolved static method
|
|
|
|
class Test() : Thread("Test") {
|
|
default object {
|
|
fun init2() {
|
|
|
|
}
|
|
}
|
|
override fun run() {
|
|
init2() // unresolved
|
|
Test.init2() // ok
|
|
}
|
|
}
|