Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
codegen
/
script
/
kt20707.kts
blob: a5591fa4981fda35c291c0ecf346cc6a07967842 [
file
]
enum
class
Build
{
Debug
,
Release
}
fun applySomething
(
build
:
Build
)
=
when
(
build
)
{
Build
.
Debug
->
"OK"
Build
.
Release
->
"fail"
}
val rv
=
applySomething
(
Build
.
Debug
)
// expected: rv: OK