#EA-79158 Fix translation of empty 'when' statement

This commit is contained in:
Alexey Andreev
2016-02-17 13:58:12 +03:00
parent 133402c1ca
commit 8497931455
3 changed files with 12 additions and 2 deletions
@@ -0,0 +1,6 @@
package foo
fun box(): String {
when {}
return "OK"
}