Files
kotlin-fork/compiler/testData/resolveAnnotations/parameters/expressions/orOr.kt
T
2014-01-14 16:37:50 +04:00

11 lines
193 B
Kotlin

package test
annotation class Ann(
val b1: Boolean,
val b2: Boolean
)
Ann(true || false, true || true) class MyClass
// EXPECTED: Ann(b1 = true: Boolean, b2 = true: Boolean)