2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:deprecation-lint.rs
|
2015-12-04 19:34:28 +03:00
|
|
|
|
|
|
|
|
#![deny(deprecated)]
|
|
|
|
|
#![allow(warnings)]
|
|
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate deprecation_lint;
|
|
|
|
|
|
|
|
|
|
use deprecation_lint::*;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
macro_test_arg_nested!(deprecated_text);
|
2025-03-29 02:41:32 +03:00
|
|
|
//~^ ERROR use of deprecated function `deprecation_lint::deprecated_text`: text
|
2015-12-04 19:34:28 +03:00
|
|
|
}
|