In the code snippet below, how do I initialize an error variable?
err := nil // can not compile, show \"use of untyped nil\" if xxx { err = fu
This one looks a little hacky, but is valid too:
err := *new(error)