2015-12-04 10:34:28 -06:00
|
|
|
// aux-build:deprecation-lint.rs
|
2020-07-25 12:49:46 -05:00
|
|
|
// error-pattern: use of deprecated function
|
2015-12-04 10:34:28 -06:00
|
|
|
|
|
|
|
#![deny(deprecated)]
|
|
|
|
#![allow(warnings)]
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate deprecation_lint;
|
|
|
|
|
|
|
|
use deprecation_lint::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
macro_test_arg_nested!(deprecated_text);
|
|
|
|
}
|