]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-forbid-attr.stderr
Auto merge of #81507 - weiznich:add_diesel_to_cargo_test, r=Mark-Simulacrum
[rust.git] / src / test / ui / lint / lint-forbid-attr.stderr
1 error[E0453]: allow(deprecated) incompatible with previous forbid
2   --> $DIR/lint-forbid-attr.rs:3:9
3    |
4 LL | #![forbid(deprecated)]
5    |           ---------- `forbid` level set here
6 LL | 
7 LL | #[allow(deprecated)]
8    |         ^^^^^^^^^^ overruled by previous forbid
9
10 error[E0453]: allow(deprecated) incompatible with previous forbid
11   --> $DIR/lint-forbid-attr.rs:3:9
12    |
13 LL | #![forbid(deprecated)]
14    |           ---------- `forbid` level set here
15 LL | 
16 LL | #[allow(deprecated)]
17    |         ^^^^^^^^^^ overruled by previous forbid
18
19 error[E0453]: allow(deprecated) incompatible with previous forbid
20   --> $DIR/lint-forbid-attr.rs:3:9
21    |
22 LL | #![forbid(deprecated)]
23    |           ---------- `forbid` level set here
24 LL | 
25 LL | #[allow(deprecated)]
26    |         ^^^^^^^^^^ overruled by previous forbid
27
28 error: aborting due to 3 previous errors
29
30 For more information about this error, try `rustc --explain E0453`.