2018-10-12 08:09:04 +02:00
|
|
|
#![deny(clippy::internal)]
|
|
|
|
#![feature(rustc_private)]
|
|
|
|
|
|
|
|
#[macro_use]
|
2020-03-30 11:02:14 +02:00
|
|
|
extern crate rustc_middle;
|
2019-12-04 00:16:03 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_session;
|
2020-01-12 15:08:41 +09:00
|
|
|
extern crate rustc_lint;
|
2020-02-11 06:20:47 -08:00
|
|
|
use rustc_lint::LintPass;
|
2018-10-12 08:09:04 +02:00
|
|
|
|
2019-11-07 12:48:22 -08:00
|
|
|
declare_tool_lint! {
|
|
|
|
pub clippy::TEST_LINT,
|
|
|
|
Warn,
|
|
|
|
"",
|
|
|
|
report_in_external_macro: true
|
2018-10-12 08:09:04 +02:00
|
|
|
}
|
|
|
|
|
2019-11-07 12:48:22 -08:00
|
|
|
declare_tool_lint! {
|
|
|
|
pub clippy::TEST_LINT_REGISTERED,
|
|
|
|
Warn,
|
|
|
|
"",
|
|
|
|
report_in_external_macro: true
|
2018-10-29 20:37:47 +01:00
|
|
|
}
|
|
|
|
|
2019-11-07 12:48:22 -08:00
|
|
|
declare_tool_lint! {
|
|
|
|
pub clippy::TEST_LINT_REGISTERED_ONLY_IMPL,
|
|
|
|
Warn,
|
|
|
|
"",
|
|
|
|
report_in_external_macro: true
|
2019-10-24 13:54:18 +02:00
|
|
|
}
|
|
|
|
|
2018-10-29 20:37:47 +01:00
|
|
|
pub struct Pass;
|
2019-04-16 15:21:12 -07:00
|
|
|
impl LintPass for Pass {
|
2019-01-26 20:40:55 +01:00
|
|
|
fn name(&self) -> &'static str {
|
|
|
|
"TEST_LINT"
|
|
|
|
}
|
2018-10-29 20:37:47 +01:00
|
|
|
}
|
|
|
|
|
2019-04-16 15:21:12 -07:00
|
|
|
declare_lint_pass!(Pass2 => [TEST_LINT_REGISTERED]);
|
|
|
|
|
|
|
|
pub struct Pass3;
|
2019-10-24 13:54:18 +02:00
|
|
|
impl_lint_pass!(Pass3 => [TEST_LINT_REGISTERED_ONLY_IMPL]);
|
2019-04-16 15:21:12 -07:00
|
|
|
|
2018-12-09 23:26:16 +01:00
|
|
|
fn main() {}
|