2021-07-01 11:17:38 -05:00
|
|
|
error: use of irregular braces for `vec!` macro
|
2021-08-12 04:16:25 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:43:13
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = vec! {1, 2, 3};
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::nonstandard-macro-braces` implied by `-D warnings`
|
|
|
|
help: consider writing `vec![1, 2, 3]`
|
2021-08-12 04:16:25 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:43:13
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = vec! {1, 2, 3};
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: use of irregular braces for `format!` macro
|
2021-08-12 04:16:25 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:44:13
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = format!["ugh {} stop being such a good compiler", "hello"];
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider writing `format!("ugh () stop being such a good compiler", "hello")`
|
2021-08-12 04:16:25 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:44:13
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = format!["ugh {} stop being such a good compiler", "hello"];
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2022-09-21 12:02:37 -05:00
|
|
|
error: use of irregular braces for `matches!` macro
|
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:45:13
|
|
|
|
|
|
|
|
|
LL | let _ = matches!{{}, ()};
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider writing `matches!((), ())`
|
2021-08-12 04:16:25 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:45:13
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
2022-09-21 12:02:37 -05:00
|
|
|
LL | let _ = matches!{{}, ()};
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: use of irregular braces for `quote!` macro
|
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:46:13
|
|
|
|
|
|
2021-07-01 11:17:38 -05:00
|
|
|
LL | let _ = quote!(let x = 1;);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider writing `quote! {let x = 1;}`
|
2022-09-21 12:02:37 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:46:13
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = quote!(let x = 1;);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: use of irregular braces for `quote::quote!` macro
|
2022-09-21 12:02:37 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:47:13
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = quote::quote!(match match match);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider writing `quote::quote! {match match match}`
|
2022-09-21 12:02:37 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:47:13
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | let _ = quote::quote!(match match match);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: use of irregular braces for `vec!` macro
|
2021-07-15 03:44:10 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:18:9
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | vec!{0, 0, 0}
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
...
|
2021-08-12 04:16:25 -05:00
|
|
|
LL | let _ = test!(); // trigger when macro def is inside our own crate
|
2021-07-01 11:17:38 -05:00
|
|
|
| ------- in this macro invocation
|
|
|
|
|
|
|
|
|
help: consider writing `vec![0, 0, 0]`
|
2021-07-15 03:44:10 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:18:9
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | vec!{0, 0, 0}
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
...
|
2021-08-12 04:16:25 -05:00
|
|
|
LL | let _ = test!(); // trigger when macro def is inside our own crate
|
2021-07-01 11:17:38 -05:00
|
|
|
| ------- in this macro invocation
|
|
|
|
= note: this error originates in the macro `test` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: use of irregular braces for `type_pos!` macro
|
2022-09-21 12:02:37 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:56:12
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | let _: type_pos!(usize) = vec![];
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider writing `type_pos![usize]`
|
2022-09-21 12:02:37 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:56:12
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | let _: type_pos!(usize) = vec![];
|
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: use of irregular braces for `eprint!` macro
|
2022-09-21 12:02:37 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:58:5
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | eprint!("test if user config overrides defaults");
|
2021-10-14 13:28:30 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
2021-10-14 13:28:30 -05:00
|
|
|
help: consider writing `eprint!["test if user config overrides defaults"]`
|
2022-09-21 12:02:37 -05:00
|
|
|
--> $DIR/conf_nonstandard_macro_braces.rs:58:5
|
2021-07-01 11:17:38 -05:00
|
|
|
|
|
|
|
|
LL | eprint!("test if user config overrides defaults");
|
2021-10-14 13:28:30 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-07-01 11:17:38 -05:00
|
|
|
|
2022-09-21 12:02:37 -05:00
|
|
|
error: aborting due to 8 previous errors
|
2021-07-01 11:17:38 -05:00
|
|
|
|