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