Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lint
/
lint-stability2.rs
blob: 254ec8f9bee1e5c5548639334b378b38709b6091 [
file
] [
log
] [
blame
] [
edit
]
//@ aux-build:lint_stability.rs
//@ error-pattern: use of deprecated function
#![
deny
(
deprecated
)]
#[
macro_use
]
extern
crate lint_stability
;
use
lint_stability
::*;
fn
main
()
{
macro_test
!();
}