http://d.puremagic.com/issues/show_bug.cgi?id=2427
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|INVALID |
------- Comment #3 from [EMAIL PROTECTED] 2008-10-26 05:14 -------
>From the spec:
"The static initializer syntax can also be used to initialize non-static
variables, provided that the member names are not given. The initializer need
not be evaluatable at compile time.
void test(int i)
{
S s = { 1, i }; // q.a = 1, q.b = i, q.c = 0, q.d = 7
}"
--