mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 21:55:31 +00:00
13 lines
235 B
Rust
13 lines
235 B
Rust
//@ aux-build:deprecation-lint.rs
|
|
|
|
#![deny(deprecated)]
|
|
|
|
#[macro_use]
|
|
extern crate deprecation_lint;
|
|
|
|
use deprecation_lint::*;
|
|
|
|
fn main() {
|
|
macro_test!(); //~ ERROR use of deprecated function `deprecation_lint::deprecated`: text
|
|
}
|