mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 17:18:32 +03:00
f3e73dced1
The problem is that when a macro expand to `compile_error!` because its input is malformed, the actual error message from the `compile_error!` might be hidden in a long list of other messages about using items that should have otherwise been generated by the macro. So suppress error about missing items in that module. Fixes issue 68838