rust/tests/ui/lint/not_found.stderr

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

23 lines
515 B
Plaintext
Raw Normal View History

warning: unknown lint: `FOO_BAR`
2018-12-29 01:52:25 -06:00
--> $DIR/not_found.rs:6:9
|
2018-02-22 18:42:32 -06:00
LL | #[allow(FOO_BAR)]
| ^^^^^^^
|
= note: `#[warn(unknown_lints)]` on by default
warning: unknown lint: `DEAD_CODE`
--> $DIR/not_found.rs:10:8
|
2018-02-22 18:42:32 -06:00
LL | #[warn(DEAD_CODE)]
2019-10-14 16:48:45 -05:00
| ^^^^^^^^^ help: did you mean: `dead_code`
warning: unknown lint: `Warnings`
--> $DIR/not_found.rs:15:8
|
2018-02-22 18:42:32 -06:00
LL | #[deny(Warnings)]
| ^^^^^^^^ help: did you mean (notice the capitalization): `warnings`
warning: 3 warnings emitted