mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
11 lines
230 B
Kotlin
Vendored
11 lines
230 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
import kotlin.jvm.JvmStatic
|
|
|
|
open class Base {
|
|
fun `foo$default`(i: Int, mask: Int, mh: Any) {}
|
|
}
|
|
|
|
object Derived : Base() {
|
|
<!ACCIDENTAL_OVERRIDE!>@JvmStatic fun foo(i: Int = 0)<!> {}
|
|
}
|