https://issues.dlang.org/show_bug.cgi?id=23999
Basile-z <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Basile-z <[email protected]> --- Integer literals are affected in the same way : ``` class Foo(alias str) { enum STR = str; } class Bar { Foo!2LUNGS; } void main() { Bar p; pragma(msg, p.tupleof[0].stringof); } ``` --
