rust/tests/ui/unpretty/deprecated-attr.rs
2025-06-21 11:09:14 -07:00

24 lines
570 B
Rust

//@ compile-flags: -Zunpretty=hir
//@ check-pass
//@ edition: 2015
#[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;
pub fn f() {
// Attribute is ignored here (with a warning), but still preserved in HIR
#[deprecated] 0
}