rust/tests/ui/lint_without_lint_pass.rs

35 lines
517 B
Rust
Raw Normal View History

2018-10-12 08:09:04 +02:00
#![deny(clippy::internal)]
#![feature(rustc_private)]
#[macro_use]
extern crate rustc;
2018-10-29 20:37:47 +01:00
use rustc::lint;
2018-10-12 08:09:04 +02:00
#[macro_use]
extern crate clippy_lints;
2018-10-29 20:37:47 +01:00
declare_clippy_lint! {
2018-10-12 08:09:04 +02:00
pub TEST_LINT,
correctness,
""
}
2018-10-29 20:37:47 +01: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)
}
fn name(&self) -> &'static str {
"TEST_LINT"
}
2018-10-29 20:37:47 +01:00
}
2018-12-09 23:26:16 +01:00
fn main() {}