blob: f22eebb53a0246f45a9573fb709261ced335c0d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//@ aux-build:deprecation-lint.rs
#![deny(deprecated)]
#[macro_use]
extern crate deprecation_lint;
use deprecation_lint::*;
fn main() {
macro_test!(); //~ ERROR use of deprecated function `deprecation_lint::deprecated`: text
}
|