mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
14 lines
285 B
Kotlin
Vendored
14 lines
285 B
Kotlin
Vendored
// CURIOUS_ABOUT <clinit>
|
|
// WITH_RUNTIME
|
|
|
|
import kotlinx.android.parcel.*
|
|
import android.os.Parcelable
|
|
import kotlin.jvm.JvmStatic
|
|
|
|
@Parcelize
|
|
class User(val firstName: String) : Parcelable {
|
|
companion object {
|
|
@JvmStatic
|
|
private val test = StringBuilder()
|
|
}
|
|
} |