blob: 2aa0d0c64d2124a4746cb9f61048efdf00187d35 [file] [log] [blame]
// aux-build:deprecation-lint.rs
// error-pattern: use of deprecated item
#![deny(deprecated)]
#[macro_use]
extern crate deprecation_lint;
use deprecation_lint::*;
fn main() {
macro_test!();
}