mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
14 lines
205 B
Rust
14 lines
205 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!();
|
|
}
|