17 lines
314 B
Plaintext
Vendored
17 lines
314 B
Plaintext
Vendored
LineBreakpoint created at kt25220.kt:5
|
|
Run Java
|
|
Connected to the target VM
|
|
kt25220.kt:5
|
|
Compile bytecode for val a = "a"
|
|
val b = when (a) {
|
|
"a" -> "A"
|
|
"b" -> "B"
|
|
else -> throw RuntimeException()
|
|
}
|
|
b
|
|
|
|
// RESULT: "A": Ljava/lang/String;
|
|
Disconnected from the target VM
|
|
|
|
Process finished with exit code 0
|