rust/tests/ui/lint/forbid-member-group.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
381 B
Plaintext
Raw Normal View History

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-09 02:07:59 +08:00
LL |
LL | #[allow(unused)]
| ^^^^^^ overruled by previous forbid
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0453`.