| // aux-build:lint-tool-test.rs |
| // compile-flags: --cfg foo |
| #![plugin(lint_tool_test)] |
| //~^ WARN use of deprecated attribute `plugin` |
| #![cfg_attr(foo, warn(test_lint))] |
| //~^ WARNING lint name `test_lint` is deprecated and may not have an effect in the future |
| //~| WARNING lint name `test_lint` is deprecated and may not have an effect in the future |
| //~| WARNING lint name `test_lint` is deprecated and may not have an effect in the future |
| //~^ WARNING lint name `clippy_group` is deprecated and may not have an effect in the future |
| //~| WARNING lint name `clippy_group` is deprecated and may not have an effect in the future |
| //~| WARNING lint name `clippy_group` is deprecated and may not have an effect in the future |
| fn lintme() { } //~ ERROR item is named 'lintme' |
| #[allow(clippy::test_lint)] |
| fn lintmetoo() { } //~ ERROR item is named 'lintmetoo' |
| //~^ WARNING lint name `test_group` is deprecated and may not have an effect in the future |
| //~| WARNING lint name `test_group` is deprecated and may not have an effect in the future |
| //~| WARNING lint name `test_group` is deprecated and may not have an effect in the future |
| #[deny(this_lint_does_not_exist)] //~ WARNING unknown lint: `this_lint_does_not_exist` |