8e77e16bbd
Drop unnecessary imports, rename some tests
9 lines
201 B
Kotlin
Vendored
9 lines
201 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
open class Base {
|
|
fun `foo$default`(i: Int, mask: Int, mh: Any) {}
|
|
}
|
|
|
|
object Derived : Base() {
|
|
<!ACCIDENTAL_OVERRIDE!>@JvmStatic fun foo(i: Int = 0)<!> {}
|
|
}
|