Skip to content

Commit 783a411

Browse files
committed
Revert "Rollup merge of #124099 - voidc:disallow-ambiguous-expr-attrs, r=davidtwco"
This reverts commit 57dad1d, reversing changes made to 36316df.
1 parent c1ea878 commit 783a411

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/source/attrib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ type Os = NoSource;
214214
// #3313
215215
fn stmt_expr_attributes() {
216216
let foo ;
217-
(#[must_use]
218-
foo) = false ;
217+
#[must_use]
218+
foo = false ;
219219
}
220220

221221
// #3509

tests/target/attrib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ type Os = NoSource;
248248
// #3313
249249
fn stmt_expr_attributes() {
250250
let foo;
251-
(#[must_use]
252-
foo) = false;
251+
#[must_use]
252+
foo = false;
253253
}
254254

255255
// #3509

0 commit comments

Comments
 (0)