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
We discovered an inconsistency between rust-analyzer's expansion of concat! and rustc when using single quotes. So '\n' gets expanded to "\'\\n\'" instead of "\n". And '\0' gets expanded to \'\\0\' instead of \u{0}.