Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
codegen
/
box
/
when
/
noElseExhaustive.kt
blob: e02125f19c8eefef3834555716a392fc92eaec62 [
file
]
enum
class
En
{
A
,
B
}
fun box
():
String
=
when
(
En
.
A
)
{
En
.
A
->
"OK"
En
.
B
->
"Fail 1"
}