rust/tests/ui/lint_pass.rs

25 lines
402 B
Rust
Raw Normal View History

2017-09-18 12:47:33 +02:00
#![feature(rustc_private)]
2017-09-18 12:47:33 +02:00
#![warn(lint_without_lint_pass)]
#[macro_use] extern crate rustc;
use rustc::lint::{LintPass, LintArray};
declare_lint! { GOOD_LINT, Warn, "good lint" }
declare_lint! { MISSING_LINT, Warn, "missing lint" }
2017-02-08 14:58:07 +01:00
pub struct Pass;
impl LintPass for Pass {
fn get_lints(&self) -> LintArray {
lint_array![GOOD_LINT]
}
}
fn main() {
let _ = MISSING_LINT;
}