]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unknown-lint-tool-name.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / unknown-lint-tool-name.stderr
1 error[E0710]: an unknown tool name found in scoped lint: `foo::bar`
2   --> $DIR/unknown-lint-tool-name.rs:13:9
3    |
4 LL | #![deny(foo::bar)] //~ ERROR an unknown tool name found in scoped lint: `foo::bar`
5    |         ^^^
6
7 error[E0710]: an unknown tool name found in scoped lint: `foo::bar`
8   --> $DIR/unknown-lint-tool-name.rs:15:9
9    |
10 LL | #[allow(foo::bar)] //~ ERROR an unknown tool name found in scoped lint: `foo::bar`
11    |         ^^^
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0710`.