mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
14 lines
207 B
Rust
14 lines
207 B
Rust
//@ aux-build:deprecation-lint.rs
|
|
//@ error-pattern: use of deprecated function
|
|
|
|
#![deny(deprecated)]
|
|
|
|
#[macro_use]
|
|
extern crate deprecation_lint;
|
|
|
|
use deprecation_lint::*;
|
|
|
|
fn main() {
|
|
macro_test!();
|
|
}
|