Revert "Rollup merge of #124099 - voidc:disallow-ambiguous-expr-attrs, r=davidtwco"
This reverts commit57dad1d75e, reversing changes made to36316df9fe.
This commit is contained in:
parent
e1ac0fa95b
commit
216424da32
15 changed files with 49 additions and 141 deletions
|
|
@ -16,7 +16,7 @@ fn foo(
|
|||
|
||||
fn skip_on_statements() {
|
||||
#[rustfmt::skip]
|
||||
{ 5+3; }
|
||||
5+3;
|
||||
}
|
||||
|
||||
#[rustfmt::skip]
|
||||
|
|
@ -33,11 +33,11 @@ mod foo {
|
|||
#[clippy::msrv = "1.29"]
|
||||
fn msrv_1_29() {
|
||||
#[cfg_attr(rustfmt, rustfmt::skip)]
|
||||
{ 1+29; }
|
||||
1+29;
|
||||
}
|
||||
|
||||
#[clippy::msrv = "1.30"]
|
||||
fn msrv_1_30() {
|
||||
#[rustfmt::skip]
|
||||
{ 1+30; }
|
||||
1+30;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ fn foo(
|
|||
|
||||
fn skip_on_statements() {
|
||||
#[cfg_attr(rustfmt, rustfmt::skip)]
|
||||
{ 5+3; }
|
||||
5+3;
|
||||
}
|
||||
|
||||
#[cfg_attr(rustfmt, rustfmt_skip)]
|
||||
|
|
@ -33,11 +33,11 @@ mod foo {
|
|||
#[clippy::msrv = "1.29"]
|
||||
fn msrv_1_29() {
|
||||
#[cfg_attr(rustfmt, rustfmt::skip)]
|
||||
{ 1+29; }
|
||||
1+29;
|
||||
}
|
||||
|
||||
#[clippy::msrv = "1.30"]
|
||||
fn msrv_1_30() {
|
||||
#[cfg_attr(rustfmt, rustfmt::skip)]
|
||||
{ 1+30; }
|
||||
1+30;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -214,8 +214,8 @@ type Os = NoSource;
|
|||
// #3313
|
||||
fn stmt_expr_attributes() {
|
||||
let foo ;
|
||||
(#[must_use]
|
||||
foo) = false ;
|
||||
#[must_use]
|
||||
foo = false ;
|
||||
}
|
||||
|
||||
// #3509
|
||||
|
|
|
|||
|
|
@ -248,8 +248,8 @@ type Os = NoSource;
|
|||
// #3313
|
||||
fn stmt_expr_attributes() {
|
||||
let foo;
|
||||
(#[must_use]
|
||||
foo) = false;
|
||||
#[must_use]
|
||||
foo = false;
|
||||
}
|
||||
|
||||
// #3509
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue