From ea049668582f032836787a07bdef5a660f002338 Mon Sep 17 00:00:00 2001 From: Valentin Berlier Date: Sun, 17 Nov 2024 17:44:19 +0100 Subject: [PATCH] docs: Add link to https://github.com/rust-lang/rust/issues/35853 --- src/utils.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index 3d906bd..01b6435 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -82,7 +82,8 @@ macro_rules! utils_escape_repetitions_braces { /// in the input tokens got replaced with the specified metavariable `$D`. /// /// This is useful when tokens are meant to be pasted into a generated macro, -/// but expanded result should not be interpreted by `macro_rules`. +/// but the expanded result should not be interpreted by `macro_rules`. (See +/// [`rust/35853`](https://github.com/rust-lang/rust/issues/35853)) /// /// The following example won't compile because the repetition `$($arg:expr),*` /// pasted in the generated macro will be interpreted by `macro_rules` upon