Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
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
);
}