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 07:52:25 +00:00
--> $DIR/not_found.rs:6:9
|
2018-02-23 00:42:32 +00: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-23 00:42:32 +00:00
LL | #[warn(DEAD_CODE)]
2019-10-14 21:48:45 +00:00
| ^^^^^^^^^ help: did you mean: `dead_code`
warning: unknown lint: `Warnings`
--> $DIR/not_found.rs:15:8
|
2018-02-23 00:42:32 +00:00
LL | #[deny(Warnings)]
| ^^^^^^^^ help: did you mean (notice the capitalization): `warnings`
warning: 3 warnings emitted