Files
kotlin-fork/compiler/testData/diagnostics/tests/when/ExhaustiveBooleanBrackets.fir.kt
T

8 lines
148 B
Kotlin
Vendored

fun foo(arg: Boolean): String {
// Must be exhaustive
return when(arg) {
(true) -> "truth"
((false)) -> "falsehood"
}
}