]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/deprecated-future.rs
Rollup merge of #69747 - spastorino:rename-rustc-guide, r=pietroalbini
[rust.git] / src / test / rustdoc / deprecated-future.rs
1 #![feature(deprecated)]
2
3 // @has deprecated_future/index.html '//*[@class="stab deprecated"]' \
4 //      'Deprecated'
5 // @has deprecated_future/struct.S.html '//*[@class="stab deprecated"]' \
6 //      'Deprecated since 99.99.99: effectively never'
7 #[deprecated(since = "99.99.99", note = "effectively never")]
8 pub struct S;