Closed as not planned
Description
- https://crater-reports.s3.amazonaws.com/beta-rustdoc-1.88-1/beta-2025-05-26/reg/safe-proc-macro2-1.0.94/log.txt
- and many others, there are just thousands and thousands of occurances of this in the beta rustdoc crater run :thonk:
[INFO] [stdout] error[E0412]: cannot find type `SourceFile` in crate `proc_macro`
[INFO] [stdout] --> src/wrapper.rs:366:26
[INFO] [stdout] |
[INFO] [stdout] 366 | Compiler(proc_macro::SourceFile),
[INFO] [stdout] | ^^^^^^^^^^ not found in `proc_macro`
[INFO] [stdout] |
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout] |
[INFO] [stdout] 1 + use crate::SourceFile;
[INFO] [stdout] |
[INFO] [stdout] 1 + use crate::fallback::SourceFile;
[INFO] [stdout] |
[INFO] [stdout] help: if you import `SourceFile`, refer to it directly
[INFO] [stdout] |
[INFO] [stdout] 366 - Compiler(proc_macro::SourceFile),
[INFO] [stdout] 366 + Compiler(SourceFile),
[INFO] [stdout] |