rust/tests/ui-fulldeps/internal-lints/lint_pass_impl_without_macro.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
872 B
Rust
Raw Normal View History

//@ compile-flags: -Z unstable-options
#![feature(rustc_private)]
2019-06-24 08:43:51 +00:00
#![deny(rustc::lint_pass_impl_without_macro)]
extern crate rustc_middle;
2019-12-01 18:11:31 +00:00
extern crate rustc_session;
2023-09-28 14:00:38 +00:00
use rustc_session::lint::{LintPass, LintVec};
2020-01-08 21:54:08 +00:00
use rustc_session::{declare_lint, declare_lint_pass, impl_lint_pass};
declare_lint! {
pub TEST_LINT,
Allow,
"test"
}
struct Foo;
impl LintPass for Foo { //~ERROR implementing `LintPass` by hand
fn name(&self) -> &'static str {
"Foo"
}
}
macro_rules! custom_lint_pass_macro {
() => {
struct Custom;
impl LintPass for Custom { //~ERROR implementing `LintPass` by hand
fn name(&self) -> &'static str {
"Custom"
}
}
};
}
custom_lint_pass_macro!();
struct Bar;
impl_lint_pass!(Bar => [TEST_LINT]);
declare_lint_pass!(Baz => [TEST_LINT]);
fn main() {}