rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/static11.C

16 lines
295 B
C

// { dg-do assemble }
// Origin: Raja R Harinath <harinath@cs.umn.edu>
enum ReservedName {
rIGNORE,
rINCLUDE
};
void maybeStatusKeyword()
{
static const ReservedName statusKeywords[] = { rINCLUDE, rIGNORE };
for (int i = 0; i < 2; i++) {
ReservedName r = statusKeywords[i];
}
}