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