mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
13 lines
260 B
Kotlin
Vendored
13 lines
260 B
Kotlin
Vendored
// "Remove 'inner' modifier" "true"
|
|
// ERROR: 'Parcelable' can't be an inner class
|
|
// WITH_RUNTIME
|
|
|
|
package com.myapp.activity
|
|
|
|
import android.os.Parcelable
|
|
import kotlinx.android.parcel.Parcelize
|
|
|
|
class Foo {
|
|
@Parcelize<caret>
|
|
class Bar : Parcelable
|
|
} |