We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db56376 commit 70460d4Copy full SHA for 70460d4
compiler/rustc_expand/src/derive_macro_expansion.rs
@@ -28,8 +28,6 @@ pub(super) fn provide_derive_macro_expansion<'tcx>(
28
let strategy = crate::proc_macro::exec_strategy(ecx);
29
let server = crate::proc_macro_server::Rustc::new(ecx);
30
let res = match client.run(&strategy, server, input.clone(), proc_macro_backtrace) {
31
- // FIXME(pr-time): without flattened some (weird) tests fail, but no idea if it's correct/enough
32
- // -> removed the flattened for now, gonna see what CI says.
33
Ok(stream) => Ok(tcx.arena.alloc(stream) as &TokenStream),
34
Err(e) => {
35
ecx.dcx().emit_err({
0 commit comments