Convert to block body: adjust line indent

#KT-22368 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-01-15 12:19:00 +09:00
committed by Ilya Kirillov
parent 1bc72f0b32
commit 30366148bf
4 changed files with 16 additions and 1 deletions
@@ -0,0 +1,2 @@
fun foo(x: Int,
y: Int) = <caret>x + y
@@ -0,0 +1,4 @@
fun foo(x: Int,
y: Int): Int {
return x + y
}