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
error: character literal may only contain one codepoint
--> src/main.rs:2:14
|
2 | let _s = '"""';
| ^^^^^
|
help: if you meant to write a `str` literal, use double quotes
|
2 | let _s = """"";
| ~~~~~
Ideally the suggestion should look like:
help: if you meant to write a `str` literal, use double quotes
|
2 | let _s = "\"\"\"";
| ~~~~~~~~