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