blob: b0d00fe17ddfdab2dcfe65fee30f1fa6ef0b4e27 [file] [log] [blame]
// RUN: %llvmgxx -S %s -o -
struct PrefMapElem {
virtual ~PrefMapElem();
unsigned int fPrefId;
};
int foo() {
PrefMapElem* fMap;
if (fMap[0].fPrefId == 1)
return 1;
return 0;
}