https://issues.dlang.org/show_bug.cgi?id=15233
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice CC| |[email protected] --- Comment #1 from [email protected] --- Reduced: ---- alias TypeTuple(stuff ...) = stuff; struct Token {} enum helper = TypeTuple!(Token(), "foo"); ---- Workaround: use alias instead of enum: ---- alias helper = TypeTuple!(fmt[from .. idx1], Token(j, 'd'), helper!(idx1+2, j+1)); ---- --
