]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unknown-lint-tool-name.rs
Auto merge of #60132 - davidtwco:issue-60075, r=estebank
[rust.git] / src / test / ui / unknown-lint-tool-name.rs
1 #![deny(foo::bar)] //~ ERROR an unknown tool name found in scoped lint: `foo::bar`
2
3 #[allow(foo::bar)] //~ ERROR an unknown tool name found in scoped lint: `foo::bar`
4 fn main() {}