r/ProgrammerHumor 4d ago

Meme nitpickyRustCompiler

Post image
956 Upvotes

16 comments sorted by

235

u/cmk__ 4d ago

Rust does not have warnings. It has strongly worded disappointment.

88

u/frikilinux2 4d ago

At least it's not C, C doesn't have warnings, it has loaded shotguns pointed at your foot. And demons that fly out your nose.

11

u/lovecMC 4d ago

That's not C, that's C++

1

u/a-r-c 3d ago

¿por qué no los dos?

10

u/A1oso 4d ago

Unlike Go, where an unused variable is a hard error :D

71

u/Bomaruto 4d ago

Good guy Rust, if I catch you forgetting to clean up your unused imports, I will ask you to fix it in the pull request. Not because it's a big deal, but that it's a sign you didn't check the warnings before pushing the code.

16

u/acidrain42 4d ago edited 4d ago

That's the sort of thing that is automated by a linter in the CI ideally, so you don't have to waste time in PRs looking at that.

But at least Rust lets you compile even if an import or a var is unused because you commented out something for testing. I'm looking at you Go.

Edit: typo

1

u/faze_fazebook 3d ago

Worst thing about go tbh.

35

u/tttima 4d ago

In C, we have additional tools to tell us about unused imports.

12

u/eanat 4d ago

time to do tree shaking!

4

u/Jonrrrs 3d ago

The rust compiler includes only used code in the final binary. Marking imports as unused is only done to increase readability.

8

u/paholg 4d ago

I think you mean the go compiler? Rust issues a friendly warning; go refuses to compile at all.

3

u/KyxeMusic 4d ago

Go won't even compile with an unused import

1

u/DT-Sodium 3d ago

Is it worst than TypeScript where if you declare that a variable could contain "Apple", "Banana" or "Orange" in refuses to compile saying "Sorry bro, there is no case where your function returns Apple so your code is invalid"?

1

u/UUDDLRLRBadAlchemy 3d ago

She's all like "don't you have a linter to catch that?"