mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
10 lines
225 B
Kotlin
Vendored
10 lines
225 B
Kotlin
Vendored
// test.AnnotatedParameterInEnumConstructor
|
|
package test
|
|
|
|
annotation class Anno(val x: String)
|
|
|
|
enum class AnnotatedParameterInEnumConstructor(@Anno("a") a: String, @Anno("b") b: String) {
|
|
A("1", "b")
|
|
}
|
|
|
|
// FIR_COMPARISON |