about summary refs log tree commit diff
path: root/tests/ui/lint/lint-stability3.rs
blob: 1ca346f746adef6d98be68b89993917f1e34bd1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//@ aux-build:lint_stability.rs

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

#[macro_use]
extern crate lint_stability;

use lint_stability::*;

fn main() {
    macro_test_arg_nested!(deprecated_text);
    //~^ ERROR use of deprecated function `lint_stability::deprecated_text`: text
}