Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
deprecation
/
deprecation-lint-2.rs
blob: f22eebb53a0246f45a9573fb709261ced335c0d0 [
file
] [
log
] [
blame
]
//@ aux-build:deprecation-lint.rs
#![
deny
(
deprecated
)]
#[
macro_use
]
extern
crate deprecation_lint
;
use
deprecation_lint
::*;
fn
main
()
{
macro_test
!();
//~ ERROR use of deprecated function `deprecation_lint::deprecated`: text
}