mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-22 10:05:06 +03:00
Disallow ambiguous attributes on expressions
This commit is contained in:
@@ -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 @@ pub fn f() {}
|
||||
#[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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user