8 lines
173 B
Kotlin
Vendored
8 lines
173 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
annotation class Test1(val x: Int)
|
|
|
|
annotation class Test2(val x: Int = 0)
|
|
|
|
annotation class Test3(val x: Test1)
|
|
|
|
annotation class Test4(vararg val xs: Int) |