blob: 383afe86cb405e40ee7f66bbefe274cb705ea488 (
plain)
1
2
3
4
5
6
|
#![feature(deprecated)]
// @has deprecated_future/struct.S.html '//*[@class="stab deprecated"]' \
// 'Deprecating in 99.99.99: effectively never'
#[deprecated(since = "99.99.99", note = "effectively never")]
pub struct S;
|