this post was submitted on 23 Jan 2025
513 points (96.9% liked)

Programmer Humor

32710 readers
535 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 1 day ago* (last edited 1 day ago) (1 children)

The complete lack of error reporting in the compiler is a surprise though.

[–] [email protected] 3 points 1 day ago (1 children)

True, that is surprising and makes everything worse. It's probably controlled by a setting that none of those engineers knows how to change, based on the lack of knowledge described here.

[–] [email protected] 1 points 1 day ago* (last edited 1 day ago)

My guess is that a stack trace is being generated, but something further down the chain is consuming it, realizes there's an error, and just throws -1 instead of the stack trace itself.

Something like

try {
    compileThisDamnProgram()
} catch Exception {
    return -1
}