]> git.proxmox.com Git - rustc.git/blob - src/test/ui/lint/not_found.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / lint / not_found.stderr
1 warning: unknown lint: `FOO_BAR`
2 --> $DIR/not_found.rs:6:9
3 |
4 LL | #[allow(FOO_BAR)]
5 | ^^^^^^^
6 |
7 = note: `#[warn(unknown_lints)]` on by default
8
9 warning: unknown lint: `DEAD_CODE`
10 --> $DIR/not_found.rs:10:8
11 |
12 LL | #[warn(DEAD_CODE)]
13 | ^^^^^^^^^ help: did you mean: `dead_code`
14
15 warning: unknown lint: `Warnings`
16 --> $DIR/not_found.rs:15:8
17 |
18 LL | #[deny(Warnings)]
19 | ^^^^^^^^ help: did you mean (notice the capitalization): `warnings`
20