mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-13 20:30:15 +00:00
7 lines
297 B
Rust
7 lines
297 B
Rust
//@ 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;
|