]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-stability3.rs
Merge commit '03f01bbe901d60b71cf2c5ec766aef5e532ab79d' into update_cg_clif-2020...
[rust.git] / src / test / ui / lint / lint-stability3.rs
1 // aux-build:lint_stability.rs
2 // error-pattern: use of deprecated function
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 }