On 10/26/2015 2:54 PM, Stefan Ram wrote:
> Victor Bazarov <v.ba...@comcast.invalid> writes:
>> On 10/26/2015 1:09 PM, Stefan Ram wrote:
>>> I have this presumption because the following program
>>> is accepted without an error message:
>>> int main()
>>> { struct S { int a; const char* b; int c; int d; };
>>> S ss = { 1, "asdf" }; }
>> Which element in the brace-enclosed initializer corresponds to the 'c'
>> member?
>
> No element in the brace-enclosed initializer list
> corresponds to the data member c.
>
Sorry, I was running on half-the-cylinders. Yours is an aggregate, at
least according to the latest draft I got, and I think you already
received a conclusive response from mark that you need the next version
of the compiler.