MBE doesn't bracket reference arguments #9996
Labels
A-macro
macro expansion
C-bug
Category: bug
S-actionable
Someone could pick this issue up and work on it right now
CC #8961
If you macro-expand
toregex
, it producesif let Some(casei) = &CASEI.casei
, causing a compilation error and a and type mismatch. The correct expansion isif let Some(casei) = (&CASEI).casei
.The text was updated successfully, but these errors were encountered: