Hacker News new | ask | show | jobs
by apta 2173 days ago
No it doesn't:

    err := foo()
    if err != nil {...}
    err = bar() // accidentally ignored
    err = baz()
    if err != nil {...}