d0f0b9e355
For internal members new names are generated, So, references to them from Java will be broken
17 lines
276 B
Kotlin
Vendored
17 lines
276 B
Kotlin
Vendored
import java.io.Serializable
|
|
|
|
class Bar : Serializable {
|
|
var foobar = 0
|
|
|
|
companion object {
|
|
private const val serialVersionUID: Long = 0
|
|
}
|
|
}
|
|
|
|
class Foo {
|
|
var foobar = 0
|
|
|
|
companion object {
|
|
private const val serialVersionUID: Long = 0
|
|
}
|
|
} |