1 // aux-build:deprecation-lint.rs 2 // error-pattern: use of deprecated function 3 4 #![deny(deprecated)] 5 #![allow(warnings)] 6 7 #[macro_use] 8 extern crate deprecation_lint; 9 10 use deprecation_lint::*; 11 main()12fn main() { 13 macro_test_arg_nested!(deprecated_text); 14 } 15