Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ aux-build:deprecation-lint.rs
//@ error-pattern: use of deprecated function
#![deny(deprecated)]
#[macro_use]
extern crate deprecation_lint;
use deprecation_lint::*;
fn main() {
macro_test!();
}