mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
Includes changes to decompiled text Old syntax is used in builtins and project code for now
12 lines
193 B
Kotlin
12 lines
193 B
Kotlin
import kotlin.platform.platformStatic
|
|
|
|
open class Base {
|
|
fun foo() {}
|
|
}
|
|
|
|
class Derived : Base() {
|
|
default object {
|
|
<!ACCIDENTAL_OVERRIDE!>platformStatic fun foo()<!> {}
|
|
}
|
|
}
|