Sign in
rust
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
lint
/
lint-stability2.rs
blob: 056ff5a3e0adb5440395a4cd1a0d203940b1f154 [
file
] [
log
] [
blame
]
//@ aux-build:lint_stability.rs
#![
deny
(
deprecated
)]
#[
macro_use
]
extern
crate lint_stability
;
use
lint_stability
::*;
fn
main
()
{
macro_test
!();
//~ ERROR use of deprecated function `lint_stability::deprecated`: text
}