fix expected output for when statement in scratch files
- the behaviour changed due to KT-33127 fixing
This commit is contained in:
committed by
Roman Golyshev
parent
1a0edd37ef
commit
e915bc2a69
+1
-1
@@ -15,7 +15,7 @@ when(a) { // OUTPUT: 1
|
||||
else -> println("1")
|
||||
}
|
||||
|
||||
when(a) {
|
||||
when(a) { // RESULT: res4: kotlin.Int = 11
|
||||
1 -> 11
|
||||
else -> 12
|
||||
}
|
||||
Reference in New Issue
Block a user