[Issue 15692] Allow struct member initializer everywhere
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Thu Dec 12 20:19:42 UTC 2019
https://issues.dlang.org/show_bug.cgi?id=15692
Basile-z <b2.temp at gmx.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |b2.temp at gmx.com
--- Comment #6 from Basile-z <b2.temp at gmx.com> ---
Another use case is with mixin expressions:
---
struct S
{
int i;
}
void main()
{
S s = mixin(`{1}`);
}
---
--
More information about the Digitalmars-d-bugs
mailing list