fix expected output for when statement in scratch files

- the behaviour changed due to KT-33127 fixing
This commit is contained in:
Roman Golyshev
2019-08-13 12:46:12 +03:00
committed by Roman Golyshev
parent 1a0edd37ef
commit e915bc2a69
+1 -1
View File
@@ -15,7 +15,7 @@ when(a) { // OUTPUT: 1
else -> println("1")
}
when(a) {
when(a) { // RESULT: res4: kotlin.Int = 11
1 -> 11
else -> 12
}