Files
kotlin-fork/compiler/testData/repl/controlFlow/kt15407.repl
T
Mikhael Bogdanov a79c2bf999 Write script descriptor type to ASM_TYPE slice
#KT-20707 Fixed
2017-10-10 17:01:23 +02:00

9 lines
193 B
Plaintext
Vendored

>>> enum class Build { Debug, Release }
>>> fun applySomething(build: Build) = when (build) {
... Build.Debug -> "OK"
... Build.Release -> "fail"
...}
>>> applySomething(Build.Debug)
OK