You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
token => returnError::wrong_token(token,"group, comma or ="),
if a derive macro using virtue is applied to code generated by a macro_rules! macro, token trees are wrapped in an empty delimiter and this code fails:
virtue/src/parse/body.rs
Lines 210 to 239 in 1ecc013
if a derive macro using virtue is applied to code generated by a macro_rules! macro, token trees are wrapped in an empty delimiter and this code fails:
this can be solved in this case by changing
$discriminant:literal
to$discriminant:tt
, but this may not always be possible.The text was updated successfully, but these errors were encountered: