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