Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
deprecation
/
deprecation-lint-3.rs
blob: e6e1587daeb4683808a75852ccb44bf5deb11d09 [
file
] [
log
] [
blame
]
// 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
);
}