Fix convert unary operator to function call

#KT-25501 Fixed
This commit is contained in:
Dmitry Gridin
2019-02-11 23:36:29 +03:00
parent e341286fb1
commit 5089df2441
17 changed files with 188 additions and 58 deletions
@@ -0,0 +1,9 @@
// IS_APPLICABLE: false
fun foo() {
var a = 0
val b = if (false) {
if (true) {
a++<caret>
} else a
} else a
}