]> git.lizzy.rs Git - rust.git/blob - src/test/ui/deprecation/rustc_deprecation-in-future.rs
report kind of deprecated item in message
[rust.git] / src / test / ui / deprecation / rustc_deprecation-in-future.rs
1 // ignore-tidy-linelength
2
3 #![deny(deprecated_in_future)]
4
5 #![feature(staged_api)]
6
7 #![stable(feature = "rustc_deprecation-in-future-test", since = "1.0.0")]
8
9 #[rustc_deprecated(since = "99.99.99", reason = "effectively never")]
10 #[stable(feature = "rustc_deprecation-in-future-test", since = "1.0.0")]
11 pub struct S;
12
13 fn main() {
14     let _ = S; //~ ERROR use of unit struct `S` that will be deprecated in future version 99.99.99: effectively never
15 }