blob: f993fd38c5ea3f66f137d11d6b2da4e9d4aa4e59 [file] [log] [blame]
// Build don't link:
// 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];
}
}