-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Closed
Labels
Description
What does 'go version' print? 1.2, and using version from playground. What steps reproduce the problem? http://play.golang.org/p/tXDIgmPIky What happened? { Field: value, LongerField: value, EspeciallyEvenLongerField: value, Field: value, }, What should have happened instead? { Field: value, LongerField: value, EspeciallyEvenLongerField: value, Field: value, }, Please provide any additional information below. There appears to be logic in gofmt which avoids aligning long field values, but this is inconsistent when a field is short after a long one. See play link for other examples.