2018-10-12 06:09:04 +00:00
|
|
|
#![deny(clippy::internal)]
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc;
|
2018-10-29 19:37:47 +00:00
|
|
|
use rustc::lint;
|
2018-10-12 06:09:04 +00:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate clippy_lints;
|
|
|
|
|
2018-10-29 19:37:47 +00:00
|
|
|
declare_clippy_lint! {
|
2018-10-12 06:09:04 +00:00
|
|
|
pub TEST_LINT,
|
|
|
|
correctness,
|
|
|
|
""
|
|
|
|
}
|
|
|
|
|
2018-10-29 19:37:47 +00:00
|
|
|
declare_clippy_lint! {
|
|
|
|
pub TEST_LINT_REGISTERED,
|
|
|
|
correctness,
|
|
|
|
""
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Pass;
|
|
|
|
impl lint::LintPass for Pass {
|
|
|
|
fn get_lints(&self) -> lint::LintArray {
|
|
|
|
lint_array!(TEST_LINT_REGISTERED)
|
|
|
|
}
|
2019-01-26 19:40:55 +00:00
|
|
|
|
|
|
|
fn name(&self) -> &'static str {
|
|
|
|
"TEST_LINT"
|
|
|
|
}
|
2018-10-29 19:37:47 +00:00
|
|
|
}
|
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
fn main() {}
|