view gcc/testsuite/g++.dg/parse/pr43765.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
line wrap: on
line source

// PR c++/43765
// { dg-options "" }

struct SomeType
{
    int n;
    const char *values[];
};
const char *temp[] = {"607", "612", 0};

SomeType vals[] =
    {
        { 0, values : temp, },	 // { dg-error "either all initializer clauses should be designated or none of them should be" "" { target c++2a } }
        0
    };   // { dg-error "GNU-style designated initializer for an array|cannot convert" }
// (note the error above is on the wrong line)
	 // { dg-error "initialization of flexible array member in a nested context" "" { target *-*-* } .-2 }