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
When you try to escape a { in a format string, e.g.
format!("\{foo:{} \}", 42)
the compiler complains about the unknown character escape {.
The correct escape syntax would be to use {{ instead of \{, the compiler should suggest this to the user.