Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/parameters/expressions/boolean.fir.kt
T
2021-07-15 17:08:17 +00:00

12 lines
272 B
Kotlin
Vendored

package test
annotation class Ann(
val b1: Boolean,
val b2: Boolean,
val b3: Boolean
)
@Ann(true and false, false or true, <!ANNOTATION_ARGUMENT_MUST_BE_CONST!>true xor false<!>) class MyClass
// EXPECTED: @Ann(b1 = false, b2 = true, b3 = true)