]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unknown-lint-tool-name.stderr
Merge commit 'cd4810de42c57b64b74dae09c530a4c3a41f87b9' into libgccjit-codegen
[rust.git] / src / test / ui / unknown-lint-tool-name.stderr
1 error[E0710]: unknown tool name `foo` found in scoped lint: `foo::bar`
2   --> $DIR/unknown-lint-tool-name.rs:1:9
3    |
4 LL | #![deny(foo::bar)]
5    |         ^^^
6    |
7    = help: add `#![register_tool(foo)]` to the crate root
8
9 error[E0710]: unknown tool name `foo` found in scoped lint: `foo::bar`
10   --> $DIR/unknown-lint-tool-name.rs:4:9
11    |
12 LL | #[allow(foo::bar)]
13    |         ^^^
14    |
15    = help: add `#![register_tool(foo)]` to the crate root
16
17 error[E0710]: unknown tool name `foo` found in scoped lint: `foo::bar`
18   --> $DIR/unknown-lint-tool-name.rs:1:9
19    |
20 LL | #![deny(foo::bar)]
21    |         ^^^
22    |
23    = help: add `#![register_tool(foo)]` to the crate root
24
25 error[E0710]: unknown tool name `foo` found in scoped lint: `foo::bar`
26   --> $DIR/unknown-lint-tool-name.rs:4:9
27    |
28 LL | #[allow(foo::bar)]
29    |         ^^^
30    |
31    = help: add `#![register_tool(foo)]` to the crate root
32
33 error: aborting due to 4 previous errors
34
35 For more information about this error, try `rustc --explain E0710`.