Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
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
!();
}