Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
deprecation
/
deprecation-lint-2.rs
blob: 16ed6d4ecd6ebf4433b84add55fd4df73dde94fa [
file
] [
log
] [
blame
]
// aux-build:deprecation-lint.rs
// error-pattern: use of deprecated function
#![
deny
(
deprecated
)]
#[
macro_use
]
extern
crate deprecation_lint
;
use
deprecation_lint
::*;
fn
main
()
{
macro_test
!();
}