Fixed formatter for function expression
This commit is contained in:
@@ -1,9 +1,7 @@
|
||||
// "Migrate lambda syntax in whole project" "true"
|
||||
|
||||
val a =
|
||||
fun (): Int {
|
||||
val b =
|
||||
fun (): Int = 5
|
||||
val a = fun (): Int {
|
||||
val b = fun (): Int = 5
|
||||
|
||||
return b()
|
||||
}
|
||||
return b()
|
||||
}
|
||||
Reference in New Issue
Block a user