summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/lint-forbid-attr.stderr
blob: bd476a0e362d967721906d9be4ca5e7dca9f072e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error[E0453]: allow(deprecated) incompatible with previous forbid
  --> $DIR/lint-forbid-attr.rs:3:9
   |
LL | #![forbid(deprecated)]
   |           ---------- `forbid` level set here
LL |
LL | #[allow(deprecated)]
   |         ^^^^^^^^^^ overruled by previous forbid

error[E0453]: allow(deprecated) incompatible with previous forbid
  --> $DIR/lint-forbid-attr.rs:3:9
   |
LL | #![forbid(deprecated)]
   |           ---------- `forbid` level set here
LL |
LL | #[allow(deprecated)]
   |         ^^^^^^^^^^ overruled by previous forbid
   |
   = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0453`.