]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/lint-stability3.rs
Auto merge of #106884 - clubby789:fieldless-enum-debug, r=michaelwoerister
[rust.git] / tests / ui / lint / lint-stability3.rs
1 // aux-build:lint_stability.rs
2 // error-pattern: use of deprecated function
3
4 #![deny(deprecated)]
5 #![allow(warnings)]
6
7 #[macro_use]
8 extern crate lint_stability;
9
10 use lint_stability::*;
11
12 fn main() {
13     macro_test_arg_nested!(deprecated_text);
14 }