]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unknown-lint-tool-name.rs
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.git] / src / test / ui / unknown-lint-tool-name.rs
1 #![deny(foo::bar)] //~ ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
2                    //~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
3
4 #[allow(foo::bar)] //~ ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
5                    //~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
6 fn main() {}