Files
kotlin-fork/plugins/parcelize/parcelize-compiler/testData/diagnostics/wrongAnnotationTarget.kt
T
Dmitriy Novozhilov 8cdddbfd9d [FIR] Implement checkers for FIR parcelize plugin
There is one of checks left unimplemented (FirParcelizePropertyChecker.checkParcelableClassProperty)
  because it requires huge commonization of detecting which type can be
  serialized and which not, which is not prioritized job for now
2021-11-23 15:01:31 +03:00

27 lines
475 B
Kotlin
Vendored

// FIR_IDENTICAL
package test
import kotlinx.parcelize.Parcelize
import android.os.Parcelable
@Parcelize
interface <!PARCELABLE_SHOULD_BE_CLASS!>Intf<!> : Parcelable
@Parcelize
object <!NO_PARCELABLE_SUPERTYPE!>Obj<!>
class A {
@Parcelize
companion <!NO_PARCELABLE_SUPERTYPE!>object<!> {
fun foo() {}
}
}
@Parcelize
enum class <!NO_PARCELABLE_SUPERTYPE!>Enum<!> {
WHITE, BLACK
}
@Parcelize
annotation class <!PARCELABLE_SHOULD_BE_CLASS!>Anno<!>