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