rustc_interface
The rustc_interface
allows you to intercept diagnostics that would otherwise be printed to stderr.
To get diagnostics from the compiler, configure rustc_interface::Config
to output diagnostic to a buffer, and run TyCtxt.analysis
. The following was tested with nightly-2024-09-16
:
{{#include ../../examples/rustc-interface-getting-diagnostics.rs}}