2020-08-09 05:01:19 +00:00
|
|
|
warning: unnecessary braces around const expression
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/unused_braces.rs:9:14
|
2020-08-09 05:01:19 +00:00
|
|
|
|
|
|
|
|
LL | let _: A<{ 7 }>;
|
|
|
|
| ^^^^^ help: remove these braces
|
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/unused_braces.rs:3:9
|
2020-08-09 05:01:19 +00:00
|
|
|
|
|
|
|
|
LL | #![warn(unused_braces)]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
warning: 1 warning emitted
|
|
|
|
|