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
{{ message }}
This repository was archived by the owner on Nov 26, 2025. It is now read-only.
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;
}