2025-03-04 22:03:28 +00:00
|
|
|
//@ compile-flags: -Zunpretty=hir
|
|
|
|
|
//@ check-pass
|
2025-04-16 10:45:03 +02:00
|
|
|
//@ edition: 2015
|
2025-03-04 22:03:28 +00:00
|
|
|
|
|
|
|
|
#[diagnostic::on_unimplemented(
|
|
|
|
|
message = "My Message for `ImportantTrait<{A}>` implemented for `{Self}`",
|
|
|
|
|
label = "My Label",
|
|
|
|
|
note = "Note 1",
|
|
|
|
|
note = "Note 2"
|
|
|
|
|
)]
|
|
|
|
|
pub trait ImportantTrait<A> {}
|
|
|
|
|
|
|
|
|
|
#[diagnostic::do_not_recommend]
|
|
|
|
|
impl<T> ImportantTrait<T> for T where T: Clone {}
|