Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
ui
/
deprecation
/
deprecation-lint-2.rs
blob: 553b1afe45caa2c49ef6971d75fa7bee391f95d1 [
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
!();
}