]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/deprecated-future.rs
Rollup merge of #103702 - WaffleLapkin:lift-sized-bounds-from-pointer-methods-where...
[rust.git] / tests / rustdoc / deprecated-future.rs
1 // @has deprecated_future/index.html '//*[@class="stab deprecated"]' \
2 //      'Deprecated'
3 // @has deprecated_future/struct.S.html '//*[@class="stab deprecated"]' \
4 //      'Deprecated since 99.99.99: effectively never'
5 #[deprecated(since = "99.99.99", note = "effectively never")]
6 pub struct S;