]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unknown-lint-tool-name.rs
Auto merge of #71780 - jcotton42:string_remove_matches, r=joshtriplett
[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                    //~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
4
5 #[allow(foo::bar)] //~ ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
6                    //~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
7                    //~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
8 fn main() {}