about summary refs log tree commit diff
path: root/src/test/rustdoc/deprecated-future.rs
blob: c5248c52fb973313eefda0ff4143312fef01cbcd (plain)
1
2
3
4
5
6
7
8
#![feature(deprecated)]

// @has deprecated_future/index.html '//*[@class="stab deprecated"]' \
//      'Deprecated'
// @has deprecated_future/struct.S.html '//*[@class="stab deprecated"]' \
//      'Deprecated since 99.99.99: effectively never'
#[deprecated(since = "99.99.99", note = "effectively never")]
pub struct S;