Skip to content

Commit 9c0e5f2

Browse files
authored
Rollup merge of #124099 - voidc:disallow-ambiguous-expr-attrs, r=davidtwco
Disallow ambiguous attributes on expressions This implements the suggestion in [#15701](#15701 (comment)) to disallow ambiguous outer attributes on expressions. This should resolve one of the concerns blocking the stabilization of `stmt_expr_attributes`.
2 parents 932f3ab + 966dd60 commit 9c0e5f2

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)