17 lines
438 B
Rust
17 lines
438 B
Rust
//@ compile-flags: -Zunpretty=hir
|
|
//@ check-pass
|
|
|
|
#[deprecated]
|
|
pub struct PlainDeprecated;
|
|
|
|
#[deprecated = "here's why this is deprecated"]
|
|
pub struct DirectNote;
|
|
|
|
#[deprecated(note = "here's why this is deprecated")]
|
|
pub struct ExplicitNote;
|
|
|
|
#[deprecated(since = "1.2.3", note = "here's why this is deprecated")]
|
|
pub struct SinceAndNote;
|
|
|
|
#[deprecated(note = "here's why this is deprecated", since = "1.2.3")]
|
|
pub struct FlippedOrder;
|