@@ -130,21 +130,22 @@ fn unbreakable_initializer_expr_pre_formatting_let_else_length_near_max_width()
130
130
131
131
fn unbreakable_initializer_expr_pre_formatting_length_up_to_opening_brace_near_max_width ( ) {
132
132
// Pre Formatting:
133
- // The length of `(indent)let pat = init else {` is 100 ( max_width)
133
+ // The length of `(indent)let pat = init else {` is 99 (< max_width)
134
134
// Post Formatting:
135
135
// The else keyword and opening brace remain on the same line as the initializer expr,
136
136
// and the else block is formatted over multiple lines because we can't fit the
137
137
// else block on the same line as the initializer expr.
138
- let Some ( x) = some_really_really_really_really_really_really_really_really_long_name____E else {
138
+ let Some ( x) = some_really_really_really_really_really_really_really_really_long_name___E else {
139
139
return ;
140
140
} ;
141
141
142
142
// Pre Formatting:
143
143
// The length of `(indent)let pat = init else {` is 101 (> max_width)
144
144
// Post Formatting:
145
- // The else keyword and opening brace remain on the same line as the initializer expr,
146
- // which leads to the `{` exceeding the max width
147
- let Some ( x) = some_really_really_really_really_really_really_really_really_long_name_____F else {
145
+ // The else keyword and opening brace cannot fit on the same line as the initializer expr.
146
+ // They are formatted on the next line.
147
+ let Some ( x) = some_really_really_really_really_really_really_really_really_long_name_____F
148
+ else {
148
149
return ;
149
150
} ;
150
151
}
@@ -153,9 +154,10 @@ fn unbreakable_initializer_expr_pre_formatting_length_through_initializer_expr_n
153
154
// Pre Formatting:
154
155
// The length of `(indent)let pat = init` is 99 (< max_width)
155
156
// Post Formatting:
156
- // The else keyword and opening brace remain on the same line as the initializer expr,
157
- // which leads to the `else {` exceeding the max width
158
- let Some ( x) = some_really_really_really_really_really_really_really_really_really_long_name___G else {
157
+ // The else keyword and opening brace cannot fit on the same line as the initializer expr.
158
+ // They are formatted on the next line.
159
+ let Some ( x) = some_really_really_really_really_really_really_really_really_really_long_name___G
160
+ else {
159
161
return ;
160
162
} ;
161
163
0 commit comments