]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-stability3.rs
3d2cc6890b812a6c144eb41d0a9fcad23d3c572a
[rust.git] / src / test / ui / lint / lint-stability3.rs
1 // aux-build:lint_stability.rs
2 // error-pattern: use of deprecated item
3
4 #![deny(deprecated)]
5 #![allow(warnings)]
6
7 #[macro_use]
8 extern crate lint_stability;
9
10 use lint_stability::*;
11
12 fn main() {
13     macro_test_arg_nested!(deprecated_text);
14 }