Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/duplicateJvmSignature/jvmStaticInClassObject.kt
T
Alexander Udalov 8e77e16bbd Remove leftovers of platformName and platformStatic in test data
Drop unnecessary imports, rename some tests
2016-03-02 16:47:04 +03:00

10 lines
152 B
Kotlin
Vendored

open class Base {
fun foo() {}
}
class Derived : Base() {
companion object {
<!ACCIDENTAL_OVERRIDE!>@JvmStatic fun foo()<!> {}
}
}