2019-11-07 18:00:00 -06:00
|
|
|
// check-pass
|
2019-03-11 19:49:17 -05:00
|
|
|
// aux-build:lint-tool-test.rs
|
2018-09-01 11:06:36 -05:00
|
|
|
// ignore-stage1
|
|
|
|
// compile-flags: -A test-lint
|
|
|
|
|
|
|
|
#![feature(plugin)]
|
2019-11-07 18:00:00 -06:00
|
|
|
#![plugin(lint_tool_test)] //~ WARNING compiler plugins are deprecated
|
2018-09-01 11:06:36 -05:00
|
|
|
|
2019-03-11 19:49:17 -05:00
|
|
|
fn lintme() {}
|
2019-11-07 18:00:00 -06:00
|
|
|
//~^ WARNING item is named 'lintme' [clippy::test_lint]
|
2018-09-01 11:06:36 -05:00
|
|
|
|
2019-03-11 19:49:17 -05:00
|
|
|
pub fn main() {}
|