]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unknown-lint-tool-name.rs
Auto merge of #83245 - the8472:generalize-slice-fill, r=m-ou-se
[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() {}