```rust // src/main.rs extern crate proc_macro; fn main() {} ``` ```console $ cargo +nightly-2023-05-04 miri run # works ``` ```console $ cargo +nightly-2023-05-05 miri run Compiling testing v0.0.0 Finished dev [unoptimized + debuginfo] target(s) in 0.11s Running `~/.rustup/toolchains/nightly-2023-05-05-x86_64-unknown-linux-gnu/bin/cargo-miri runner target/miri/x86_64-unknown-linux-gnu/debug/testing` error[E0463]: can't find crate for `proc_macro` --> src/main.rs:1:1 | 1 | extern crate proc_macro; | ^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate error: aborting due to previous error For more information about this error, try `rustc --explain E0463`. ``` Rust-lang/rust commit range is https://github.com/rust-lang/rust/compare/473f916d8...74c482104. Probably https://github.com/rust-lang/rust/pull/108865 (FYI @Zoxc @jyn514)