rust/tests/ui/lint_without_lint_pass.rs

40 lines
651 B
Rust
Raw Normal View History

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