mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
12 lines
181 B
Kotlin
Vendored
12 lines
181 B
Kotlin
Vendored
import kotlin.jvm.JvmStatic
|
|
|
|
open class Base {
|
|
fun foo() {}
|
|
}
|
|
|
|
class Derived : Base() {
|
|
companion object {
|
|
<!ACCIDENTAL_OVERRIDE!>@JvmStatic fun foo()<!> {}
|
|
}
|
|
}
|