Fix problem with alignment in assignments and other binary expressions
This commit is contained in:
@@ -4,8 +4,14 @@ fun test(a: Int?) {
|
||||
a ?: 42
|
||||
|
||||
a ?:
|
||||
42
|
||||
42
|
||||
|
||||
a
|
||||
?: 42
|
||||
}
|
||||
?: 42
|
||||
|
||||
val some = a ?:
|
||||
b ?:
|
||||
12
|
||||
}
|
||||
|
||||
// SET_TRUE: ALIGN_MULTILINE_BINARY_OPERATION
|
||||
Reference in New Issue
Block a user