Configuration: move scratch tests to separate module
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
// REPL_MODE: ~REPL_MODE~
|
||||
|
||||
val a = 1
|
||||
when(a) {
|
||||
1 -> println("1")
|
||||
else -> println("2")
|
||||
}
|
||||
|
||||
when(a) {
|
||||
1 -> println("1")
|
||||
}
|
||||
|
||||
when(a) {
|
||||
2 -> println("2")
|
||||
else -> println("1")
|
||||
}
|
||||
|
||||
when(a) {
|
||||
1 -> 11
|
||||
else -> 12
|
||||
}
|
||||
Reference in New Issue
Block a user