Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
compiler
/
testData
/
cfg
/
controlStructures
/
whenExhaustive.kt
blob: e39b2f9c9960166fbb8af970376e5b9e6aacd66b [
file
]
fun foo
(
flag
:
Boolean
):
Int
{
when
(
flag
)
{
true
->
return
1
false
->
return
0
}
}