da9f0e7af8
Sometimes there are legitimate reasons to have two separate signature dumps for K1 and K2. ^KT-61797 Fixed
12 lines
242 B
Kotlin
Vendored
12 lines
242 B
Kotlin
Vendored
// SEPARATE_SIGNATURE_DUMP_FOR_K2
|
|
// ^ Difference in annotations generated by K1 and K2
|
|
|
|
annotation class TestAnn(val x: String)
|
|
|
|
enum class TestEnum {
|
|
@TestAnn("ENTRY1") ENTRY1,
|
|
@TestAnn("ENTRY2") ENTRY2 {
|
|
val x = 42
|
|
}
|
|
}
|