]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-stability3.rs
Merge commit '3a31c6d8272c14388a34622193baf553636fe470' into sync_cg_clif-2021-07-07
[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 }