Files
rust/tests/ui/deprecation/deprecation-lint-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
235 B
Rust
Raw Normal View History

//@ 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
}