2021-01-30 00:06:00 +00:00
|
|
|
error[E0453]: allow(unused) incompatible with previous forbid
|
|
|
|
--> $DIR/forbid-member-group.rs:6:9
|
|
|
|
|
|
|
|
|
LL | #![forbid(unused_variables)]
|
|
|
|
| ---------------- `forbid` level set here
|
2022-06-08 18:07:59 +00:00
|
|
|
LL |
|
2021-01-30 00:06:00 +00:00
|
|
|
LL | #[allow(unused)]
|
|
|
|
| ^^^^^^ overruled by previous forbid
|
|
|
|
|
|
|
|
error[E0453]: allow(unused) incompatible with previous forbid
|
|
|
|
--> $DIR/forbid-member-group.rs:6:9
|
|
|
|
|
|
|
|
|
LL | #![forbid(unused_variables)]
|
|
|
|
| ---------------- `forbid` level set here
|
2022-06-08 18:07:59 +00:00
|
|
|
LL |
|
2021-01-30 00:06:00 +00:00
|
|
|
LL | #[allow(unused)]
|
|
|
|
| ^^^^^^ overruled by previous forbid
|
|
|
|
|
2021-02-28 18:24:46 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2021-01-30 00:06:00 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0453`.
|