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

#![deny(deprecated)]

#[macro_use]
extern crate lint_stability;

use lint_stability::*;

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