summaryrefslogtreecommitdiffstats
path: root/tests/ui-fulldeps/lint-tool-cmdline-allow.rs
blob: 83a8b3e1a7eeda48fff961765b39079fa31f8612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass
// aux-build:lint-tool-test.rs
// ignore-stage1
// compile-flags: -A test-lint

#![feature(plugin)]
#![plugin(lint_tool_test)] //~ WARNING compiler plugins are deprecated

fn lintme() {}
//~^ WARNING item is named 'lintme' [clippy::test_lint]

pub fn main() {}