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