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
Expected result: The compiler does not crash.
Actual result: The compiler crashes, and asks for the crash to be reported as a bug.
Workaround: Using concat!() instead of format!()
Likely cause: concat!() returns a &str, whereas format!() returns a String.
The text was updated successfully, but these errors were encountered:
Example code:
Expected result: The compiler does not crash.
Actual result: The compiler crashes, and asks for the crash to be reported as a bug.
Workaround: Using concat!() instead of format!()
Likely cause: concat!() returns a &str, whereas format!() returns a String.
The text was updated successfully, but these errors were encountered: