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
This can happen where TypeInfo is derived for a type generated by a ty expression in a declarative macro. This is parsed as a syn::Type::Group, which is then pretty-printed with the invisible delimiters "/*»*/" and "/*«*/".
These should be stripped, possibly in clean_type_string, but maybe there is a cleaner way to do it.
The text was updated successfully, but these errors were encountered:
See rust-lang/rust#97076 and rust-lang/rust#96682.
This can happen where
TypeInfo
is derived for a type generated by aty
expression in a declarative macro. This is parsed as asyn::Type::Group
, which is then pretty-printed with the invisible delimiters"/*»*/"
and"/*«*/"
.These should be stripped, possibly in
clean_type_string
, but maybe there is a cleaner way to do it.The text was updated successfully, but these errors were encountered: