Compiler bugs
Compilers are software, and they have bugs. This can be extra challenging as a developer because you expect your tools to work correctly, especially with something like a compiler that you know is constantly used and relied upon by many people.
For example, Microsoft published a guide for how to report a bug in their C++ compiler. It contains a lot of great advice for bug reporting in general, including:
- Bug report minimum requirements.
- How to get the minimum requirements.
- Encouragement to test with the latest version and other compilers.
- Examples of types of crashes or errors you could be encountering.
Have you ever reported a compiler bug?