]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unknown-lint-tool-name.rs
Merge commit '5ff7b632a95bac6955611d85040859128902c580' into sync-rustfmt-subtree
[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() {}