Files
rust/tests/ui/tool-attributes/unknown-lint-tool-name.rs

9 lines
534 B
Rust
Raw Normal View History

#![deny(foo::bar)] //~ ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
//~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
//~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
2018-07-03 12:23:20 +02:00
#[allow(foo::bar)] //~ ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
//~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
//~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
2018-07-03 12:23:20 +02:00
fn main() {}