mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
39 lines
651 B
Rust
39 lines
651 B
Rust
#![deny(clippy::internal)]
|
|
#![feature(rustc_private)]
|
|
|
|
#[macro_use]
|
|
extern crate rustc;
|
|
use rustc::lint::{LintArray, LintPass};
|
|
|
|
#[macro_use]
|
|
extern crate clippy_lints;
|
|
|
|
declare_clippy_lint! {
|
|
pub TEST_LINT,
|
|
correctness,
|
|
""
|
|
}
|
|
|
|
declare_clippy_lint! {
|
|
pub TEST_LINT_REGISTERED,
|
|
correctness,
|
|
""
|
|
}
|
|
|
|
pub struct Pass;
|
|
impl LintPass for Pass {
|
|
fn get_lints(&self) -> LintArray {
|
|
lint_array!(TEST_LINT_REGISTERED)
|
|
}
|
|
|
|
fn name(&self) -> &'static str {
|
|
"TEST_LINT"
|
|
}
|
|
}
|
|
|
|
declare_lint_pass!(Pass2 => [TEST_LINT_REGISTERED]);
|
|
|
|
pub struct Pass3;
|
|
impl_lint_pass!(Pass3 => [TEST_LINT_REGISTERED]);
|
|
|
|
fn main() {}
|