os-rust/src/test/ui/unknown-lint-tool-name.stderr

16 lines
550 B
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0710]: an unknown tool name found in scoped lint: `foo::bar`
2018-12-25 08:56:47 -07:00
--> $DIR/unknown-lint-tool-name.rs:1:9
2018-08-08 14:28:26 +02:00
|
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`
2018-12-25 08:56:47 -07:00
--> $DIR/unknown-lint-tool-name.rs:3:9
2018-08-08 14:28:26 +02:00
|
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`.