4850fd10f0
Introduced '@' after each annotation
11 lines
177 B
Kotlin
Vendored
11 lines
177 B
Kotlin
Vendored
package test
|
|
|
|
annotation class Ann(
|
|
val b1: Boolean,
|
|
val b2: Boolean
|
|
)
|
|
|
|
@Ann(true || false, true || true) class MyClass
|
|
|
|
// EXPECTED: @Ann(b1 = true, b2 = true)
|