mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
30 lines
453 B
Rust
30 lines
453 B
Rust
#![deny(clippy::internal)]
|
|
#![feature(rustc_private)]
|
|
|
|
#[macro_use]
|
|
extern crate rustc;
|
|
use rustc::lint;
|
|
|
|
#[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 lint::LintPass for Pass {
|
|
fn get_lints(&self) -> lint::LintArray {
|
|
lint_array!(TEST_LINT_REGISTERED)
|
|
}
|
|
}
|
|
|
|
fn main() {}
|