rust/tests/ui/lint/lint-stability2.rs

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

14 lines
201 B
Rust
Raw Normal View History

//@ 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!();
}