If I have a bunch of goroutines adding to the same `multierror.Error` type, would this cause problems if I don't wrap it with a mutex?
If I have a bunch of goroutines adding to the same
multierror.Errortype, would this cause problems if I don't wrap it with a mutex?