From c0e8750beac073b8d377db2d608fba45ff1e1cba Mon Sep 17 00:00:00 2001 From: Aryan Dubey Date: Sun, 29 Mar 2026 21:22:14 -0400 Subject: [PATCH] Added issue link and description to macro-const-stringify.rs --- tests/ui/macros/macro-const-stringify.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/ui/macros/macro-const-stringify.rs b/tests/ui/macros/macro-const-stringify.rs index 810f5e0c7f96..e2a110ffd09c 100644 --- a/tests/ui/macros/macro-const-stringify.rs +++ b/tests/ui/macros/macro-const-stringify.rs @@ -1,4 +1,6 @@ //@ check-pass +//Tests to check that a macro generating an impl block with stringify for a trait associated const +//https://github.com/rust-lang/rust/issues/38160 trait MyTrait { const MY_CONST: &'static str; }