Go will complain loudly if you don't use a captured error value. It will also complain loudly if you don't capture the error value. This makes it harder in Go to ignore an error than most other languages. In fact a common complaint of Go is that it forces you to do something with the error when you would rather not.
I'm left to wonder what you are imagining would result in not handling errors on accident in Go.
I'm left to wonder what you are imagining would result in not handling errors on accident in Go.