]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/register-tool-lint.stderr
Auto merge of #106349 - LeSeulArtichaut:dyn-star-tracking-issue, r=jackh726
[rust.git] / src / test / ui / lint / register-tool-lint.stderr
1 error[E0710]: unknown tool name `abc` found in scoped lint: `abc::my_lint`
2   --> $DIR/register-tool-lint.rs:5:9
3    |
4 LL | #![warn(abc::my_lint)]
5    |         ^^^
6    |
7    = help: add `#![register_tool(abc)]` to the crate root
8
9 error[E0710]: unknown tool name `abc` found in scoped lint: `abc::my_lint`
10   --> $DIR/register-tool-lint.rs:5:9
11    |
12 LL | #![warn(abc::my_lint)]
13    |         ^^^
14    |
15    = help: add `#![register_tool(abc)]` to the crate root
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0710`.