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