c4aa6d01a9
Compile-time constants are taken into account. #KT-3743 Fixed.
8 lines
148 B
Kotlin
Vendored
8 lines
148 B
Kotlin
Vendored
fun foo(arg: Boolean): String {
|
|
// Must be exhaustive
|
|
return when(arg) {
|
|
(true) -> "truth"
|
|
((false)) -> "falsehood"
|
|
}
|
|
}
|