]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/forbid-member-group.stderr
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[rust.git] / src / test / ui / lint / forbid-member-group.stderr
1 error[E0453]: allow(unused) incompatible with previous forbid
2   --> $DIR/forbid-member-group.rs:6:9
3    |
4 LL | #![forbid(unused_variables)]
5    |           ---------------- `forbid` level set here
6 LL | 
7 LL | #[allow(unused)]
8    |         ^^^^^^ overruled by previous forbid
9
10 error[E0453]: allow(unused) incompatible with previous forbid
11   --> $DIR/forbid-member-group.rs:6:9
12    |
13 LL | #![forbid(unused_variables)]
14    |           ---------------- `forbid` level set here
15 LL | 
16 LL | #[allow(unused)]
17    |         ^^^^^^ overruled by previous forbid
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0453`.