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
At a global level, writing const x = followed by a new line does not add indentation. (== doesn't affect the code.) Indentation is added correctly when the code is in a function.
Expected:
// Should indent...consta=123;
pubfnmain() u8 {
// Indents as expected.constb=0;
returnb;
}
Actual:
// Should indent...consta=123;
pubfnmain() u8 {
// Indents as expected.constb=0;
returnb;
}
The text was updated successfully, but these errors were encountered:
At a global level, writing
const x =
followed by a new line does not add indentation. (==
doesn't affect the code.) Indentation is added correctly when the code is in a function.Expected:
Actual:
The text was updated successfully, but these errors were encountered: