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
What operating system and processor architecture are you using (go env)?
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
What did you do?
I ran gofmt on
funcfoo(astring, bstring) {
foo(a, /* blah */b)
}
What did you expect to see?
I expected the inline comment to stay with the second argument, as that's what it's commenting. I would expect the content to either be unchanged or reformatted to
funcfoo(astring, bstring) {
foo(a, b/* blah */)
}
What did you see instead?
funcfoo(astring, bstring) {
foo(a/* blah */, b)
}
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
What version of Go are you using (
go version
)?What operating system and processor architecture are you using (
go env
)?What did you do?
I ran gofmt on
What did you expect to see?
I expected the inline comment to stay with the second argument, as that's what it's commenting. I would expect the content to either be unchanged or reformatted to
What did you see instead?
The text was updated successfully, but these errors were encountered: