summary refs log tree commit diff
path: root/src/test/ui/deprecation/deprecation-lint-3.rs
blob: ae2dd7aac81558d3ce4ce6f5766abf6aaff84a75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// aux-build:deprecation-lint.rs
// error-pattern: use of deprecated item

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

#[macro_use]
extern crate deprecation_lint;

use deprecation_lint::*;

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