Creeping macro expansion - possible exponential time? #139306
Labels
A-macros
Area: All kinds of macros (custom derive, macro_rules!, proc macros, ..)
C-bug
Category: This is a bug.
E-needs-mcve
Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example
I-hang
Issue: The compiler never terminates, due to infinite loops, deadlock, livelock, etc.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
I am working on the
cloudmqtt
crate with thetest-dsl
crate to create some tests. Thetest-dsl
recently got an update to include some fancy macros for argument construction (see here). I am using this macro in here.Compiling that code never finishes (see further down for
rustc
log output). It seems to me that the macro expansion, which is recursive, gets slower and slower, as therustc
debug output gets slower and slower.To get the code and compile it, this should be sufficient:
I expected to see this happen: Code compiles.
Instead, this happened: Compilation never finishes.
Meta
rustc --version --verbose
:There is no backtrace, because there's no crash.
The last lines of
RUSTC_LOG=debug cargo build --tests --verbose
are:The text was updated successfully, but these errors were encountered: