Files
kotlin-fork/analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/parameterDecl.kt
T
2022-10-05 15:06:52 +00:00

8 lines
141 B
Kotlin
Vendored

fun test(<expr>b: Boolean</expr>): Int {
val (one, two) = b to !b
return if (one && two) {
54
} else {
45
}
}