Fix formatting for multiline binary expressions
#KT-4797 Fixed
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
fun test() {
|
||||
if (true
|
||||
|| false
|
||||
|| true) {
|
||||
|
||||
}
|
||||
|
||||
if (true || false
|
||||
|| true) {
|
||||
|
||||
}
|
||||
|
||||
if (true
|
||||
|| false
|
||||
|| true) {
|
||||
|
||||
}
|
||||
|
||||
if (true ||
|
||||
false ||
|
||||
true) {
|
||||
|
||||
}
|
||||
|
||||
true
|
||||
|| true
|
||||
|
||||
false
|
||||
&& false
|
||||
}
|
||||
|
||||
// SET_TRUE: ALIGN_MULTILINE_BINARY_OPERATION
|
||||
Reference in New Issue
Block a user