about summary refs log tree commit diff
path: root/tests/ui/tool-attributes/unknown-lint-tool-name.rs
blob: 84ab7c1944ab2ac10fe0cb288f04fb3d94a55928 (plain)
1
2
3
4
5
6
7
8
#![deny(foo::bar)] //~ ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
                   //~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
                   //~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`

#[allow(foo::bar)] //~ ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
                   //~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
                   //~| ERROR unknown tool name `foo` found in scoped lint: `foo::bar`
fn main() {}