summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/lint-stability3.rs
blob: 4452846ec0a961e5f9a13853ff1c041bd565eedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// aux-build:lint_stability.rs
// error-pattern: use of deprecated function

#![deny(deprecated)]
#![allow(warnings)]

#[macro_use]
extern crate lint_stability;

use lint_stability::*;

fn main() {
    macro_test_arg_nested!(deprecated_text);
}