|
1 |
| -// aux-build:macro_rules.rs |
| 1 | +//@aux-build:macro_rules.rs |
2 | 2 | #![rustfmt::skip]
|
3 | 3 | #![feature(custom_inner_attributes)]
|
4 | 4 | #![allow(unused)]
|
5 | 5 | #![allow(clippy::let_and_return)]
|
6 | 6 | #![allow(clippy::redundant_closure_call)]
|
7 | 7 | #![allow(clippy::no_effect)]
|
8 | 8 | #![allow(clippy::unnecessary_operation)]
|
| 9 | +#![allow(clippy::never_loop)] |
9 | 10 | #![warn(clippy::excessive_nesting)]
|
10 | 11 | #![allow(clippy::collapsible_if)]
|
11 | 12 |
|
@@ -142,25 +143,25 @@ fn main() {
|
142 | 143 | y += {{{{{5}}}}};
|
143 | 144 | let z = y + {{{{{{{{{5}}}}}}}}};
|
144 | 145 | [0, {{{{{{{{{{0}}}}}}}}}}];
|
145 |
| - let mut xx = [0; {{{{{{{{1}}}}}}}}]; |
| 146 | + let mut xx = [0; {{{{{{{{100}}}}}}}}]; |
146 | 147 | xx[{{{{{{{{{{{{{{{{{{{{{{{{3}}}}}}}}}}}}}}}}}}}}}}}}];
|
147 | 148 | &mut {{{{{{{{{{y}}}}}}}}}};
|
148 | 149 |
|
149 | 150 | for i in {{{{xx}}}} {{{{{{{{}}}}}}}}
|
150 | 151 |
|
151 |
| - while let Some(i) = {{{{{xx.pop()}}}}} {{{{{{{}}}}}}} |
| 152 | + while let Some(i) = {{{{{{Some(1)}}}}}} {{{{{{{}}}}}}} |
152 | 153 |
|
153 | 154 | while {{{{{{{{true}}}}}}}} {{{{{{{{{}}}}}}}}}
|
154 | 155 |
|
155 | 156 | let d = D { d: {{{{{{{{{{{{{{{{{{{{{{{3}}}}}}}}}}}}}}}}}}}}}}} };
|
156 | 157 |
|
157 |
| - {{{{1}}}}..{{{{{{3}}}}}}; |
158 |
| - {{{{1}}}}..={{{{{{{{{{{{{{{{{{{{{{{{{{6}}}}}}}}}}}}}}}}}}}}}}}}}}; |
| 158 | + {{{{1;}}}}..{{{{{{3}}}}}}; |
| 159 | + {{{{1;}}}}..={{{{{{{{{{{{{{{{{{{{{{{{{{6}}}}}}}}}}}}}}}}}}}}}}}}}}; |
159 | 160 | ..{{{{{{{5}}}}}}};
|
160 | 161 | ..={{{{{3}}}}};
|
161 |
| - {{{{{1}}}}}..; |
| 162 | + {{{{{1;}}}}}..; |
162 | 163 |
|
163 |
| - loop { break {{{{1}}}} } |
| 164 | + loop { break {{{{1}}}} }; |
164 | 165 | loop {{{{{{}}}}}}
|
165 | 166 |
|
166 | 167 | match {{{{{{true}}}}}} {
|
|
0 commit comments