blob: 9710d0826c71f6becbc70685f9b10916aa8fd518 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// aux-build:lint_stability.rs
// error-pattern: use of deprecated item
#![deny(deprecated)]
#[macro_use]
extern crate lint_stability;
use lint_stability::*;
fn main() {
macro_test!();
}
|