blob: 498c9833501b231438280b34c067245182f25e2f [file] [log] [blame]
// Build don't link:
// Special g++ Options: -O2
struct E
{
int f(int);
};
int ha()
{
enum {X = 0};
int A, C;
E vList[10];
A = (C + 1) % 3;
vList[1].f(A);
}