mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
13 lines
227 B
Rust
13 lines
227 B
Rust
//@ aux-build:lint_stability.rs
|
|
|
|
#![deny(deprecated)]
|
|
|
|
#[macro_use]
|
|
extern crate lint_stability;
|
|
|
|
use lint_stability::*;
|
|
|
|
fn main() {
|
|
macro_test!(); //~ ERROR use of deprecated function `lint_stability::deprecated`: text
|
|
}
|