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