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