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
I want to create a Foo::Bartoken stream and am currently trying it like this:
let foo = format_ident!("Foo");let bar = format_ident!("Bar");quote!{
#foo::#bar
}
but this results in a token stream of `Foo::Bar` which the compiler doesn't accept.
The text was updated successfully, but these errors were encountered:
I want to create a
Foo::Bar
token stream and am currently trying it like this:The text was updated successfully, but these errors were encountered: