Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/parameters/expressions/andAnd.kt
T

13 lines
268 B
Kotlin
Vendored

// !LANGUAGE: -ProhibitSimplificationOfNonTrivialConstBooleanExpressions
// FIR_IDENTICAL
package test
annotation class Ann(
val b1: Boolean,
val b2: Boolean
)
@Ann(true && false, true && true) class MyClass
// EXPECTED: @Ann(b1 = false, b2 = true)