Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
deprecation
/
deprecation-lint-3.rs
blob: f01fc9244570af01235a0fed80d00ccc9a7a330c [
file
] [
log
] [
blame
] [
edit
]
//@ 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
);
}