12 lines
232 B
Plaintext
Vendored
12 lines
232 B
Plaintext
Vendored
// "Add empty primary constructor" "true"
|
|
// WITH_RUNTIME
|
|
|
|
package com.myapp.activity
|
|
|
|
import android.os.Parcelable
|
|
import kotlinx.parcelize.Parcelize
|
|
|
|
@Parcelize
|
|
class <caret>Test() : Parcelable {
|
|
constructor(a: Int) : this()
|
|
} |