#KT-13750 fix (#951)

This commit is contained in:
Simon Ogorodnik
2016-09-13 18:12:22 +03:00
committed by Dmitry Jemerov
parent 19ef29e96c
commit 115d63a2f3
6 changed files with 70 additions and 10 deletions
@@ -0,0 +1,17 @@
import java.io.Serializable
class Bar : Serializable {
internal var foobar = 0
companion object {
@JvmStatic private val serialVersionUID: Long = 0
}
}
class Foo {
internal var foobar = 0
companion object {
private val serialVersionUID: Long = 0
}
}