Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
compiler
/
testData
/
codegen
/
box
/
when
/
noElseNoMatch.kt
blob: 2c4e803b07b0baf47bc7b15679a5a62894c4d9b3 [
file
]
fun box
():
String
{
val x
=
3
when
(
x
)
{
1
->
{}
2
->
{}
}
return
"OK"
}