mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
32 lines
455 B
Rust
32 lines
455 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() {
|
|
}
|