8e77e16bbd
Drop unnecessary imports, rename some tests
10 lines
152 B
Kotlin
Vendored
10 lines
152 B
Kotlin
Vendored
open class Base {
|
|
fun foo() {}
|
|
}
|
|
|
|
class Derived : Base() {
|
|
companion object {
|
|
<!ACCIDENTAL_OVERRIDE!>@JvmStatic fun foo()<!> {}
|
|
}
|
|
}
|