Remove redundant curly braces in string templates on inline

This commit is contained in:
Valentin Kipyatkov
2017-05-23 17:13:02 +03:00
parent ab1b985bac
commit c69375ebdc
8 changed files with 181 additions and 79 deletions
@@ -10,7 +10,7 @@ fun newFun(): Int = 0
fun foo(): Int {
bar()
<caret>return newFun()
return <caret>newFun()
}
fun bar(): Int? = 0