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

5 lines
180 B
Rust

#![deny(foo::bar)] //~ ERROR an unknown tool name found in scoped lint: `foo::bar`
#[allow(foo::bar)] //~ ERROR an unknown tool name found in scoped lint: `foo::bar`
fn main() {}