mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
253 B
Rust
15 lines
253 B
Rust
//@ aux-build:deprecation-lint.rs
|
|
//@ error-pattern: use of deprecated function
|
|
|
|
#![deny(deprecated)]
|
|
#![allow(warnings)]
|
|
|
|
#[macro_use]
|
|
extern crate deprecation_lint;
|
|
|
|
use deprecation_lint::*;
|
|
|
|
fn main() {
|
|
macro_test_arg_nested!(deprecated_text);
|
|
}
|