]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lint/lint-stability3.rs
New upstream version 1.47.0~beta.2+dfsg1
[rustc.git] / src / test / ui / lint / lint-stability3.rs
CommitLineData
85aaf69f 1// aux-build:lint_stability.rs
3dfed10e 2// error-pattern: use of deprecated function
223e47cc 3
85aaf69f
SL
4#![deny(deprecated)]
5#![allow(warnings)]
223e47cc 6
85aaf69f
SL
7#[macro_use]
8extern crate lint_stability;
9
10use lint_stability::*;
223e47cc
LB
11
12fn main() {
85aaf69f 13 macro_test_arg_nested!(deprecated_text);
223e47cc 14}