We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a568985 commit 966dd60Copy full SHA for 966dd60
tests/source/attrib.rs
@@ -214,8 +214,8 @@ type Os = NoSource;
214
// #3313
215
fn stmt_expr_attributes() {
216
let foo ;
217
- #[must_use]
218
- foo = false ;
+ (#[must_use]
+ foo) = false ;
219
}
220
221
// #3509
tests/target/attrib.rs
@@ -248,8 +248,8 @@ type Os = NoSource;
248
249
250
let foo;
251
252
- foo = false;
+ foo) = false;
253
254
255
0 commit comments