blob: 3d2cc6890b812a6c144eb41d0a9fcad23d3c572a [file] [log] [blame]
// aux-build:lint_stability.rs
// error-pattern: use of deprecated item
#![deny(deprecated)]
#![allow(warnings)]
#[macro_use]
extern crate lint_stability;
use lint_stability::*;
fn main() {
macro_test_arg_nested!(deprecated_text);
}