[FIR] Implement ELSE_MISPLACED_IN_WHEN diagnostics, fix tests

This commit is contained in:
Ivan Kochurkin
2021-04-14 22:56:25 +03:00
committed by TeamCityServer
parent 7f4da93cc3
commit 00bc04b3df
17 changed files with 67 additions and 15 deletions
@@ -56,6 +56,6 @@ fun fourth(arg: Color) = when (arg) {
fun fifth(arg: Any?) = when (arg) {
is Any -> "Any"
else -> ""
<!ELSE_MISPLACED_IN_WHEN!>else<!> -> ""
else -> null
}
+1 -1
View File
@@ -50,7 +50,7 @@ fun test() {
val z = 1
when (z) {
else -> 1
<!ELSE_MISPLACED_IN_WHEN!>else<!> -> 1
1 -> 2
}