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