mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
11 lines
235 B
Kotlin
11 lines
235 B
Kotlin
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
import kotlin.platform.platformStatic
|
|
|
|
open class Base {
|
|
fun `foo$default`(i: Int, mask: Int) {}
|
|
}
|
|
|
|
object Derived : Base() {
|
|
<!ACCIDENTAL_OVERRIDE!>platformStatic fun foo(i: Int = 0)<!> {}
|
|
}
|