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.

14 lines
205 B
Rust
Raw Normal View History

// aux-build:deprecation-lint.rs
// error-pattern: use of deprecated function
#![deny(deprecated)]
#[macro_use]
extern crate deprecation_lint;
use deprecation_lint::*;
fn main() {
macro_test!();
}