]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-stability2.rs
report kind of deprecated item in message
[rust.git] / src / test / ui / lint / lint-stability2.rs
1 // aux-build:lint_stability.rs
2 // error-pattern: use of deprecated function
3
4 #![deny(deprecated)]
5
6 #[macro_use]
7 extern crate lint_stability;
8
9 use lint_stability::*;
10
11 fn main() {
12     macro_test!();
13 }