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