dd051c1556
Previously the annotations were included in reverse order. With this change they are kept in the same order as in the source file. This changes the test case for KT-23427 but that issue seems to relate to annotation arguments that are missing, not the order of repeatable annotations. This fixes KT-51087
10 lines
241 B
Kotlin
Vendored
10 lines
241 B
Kotlin
Vendored
// EXPECTED_ERROR: This class does not have a constructor (1,2)
|
|
|
|
//import kotlin.jvm.JvmRepeatable
|
|
|
|
//@JvmRepeatable
|
|
annotation class Condition(val condition: String)
|
|
|
|
@Condition(condition = "value1")
|
|
@Condition(condition = "value2")
|
|
class A |