rust/src/test/ui/unknown-lint-tool-name.stderr
2018-12-25 21:08:33 -07:00

16 lines
550 B
Plaintext

error[E0710]: an unknown tool name found in scoped lint: `foo::bar`
--> $DIR/unknown-lint-tool-name.rs:1:9
|
LL | #![deny(foo::bar)] //~ ERROR an unknown tool name found in scoped lint: `foo::bar`
| ^^^
error[E0710]: an unknown tool name found in scoped lint: `foo::bar`
--> $DIR/unknown-lint-tool-name.rs:3:9
|
LL | #[allow(foo::bar)] //~ ERROR an unknown tool name found in scoped lint: `foo::bar`
| ^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0710`.