1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
15 lines
204 B
C++
15 lines
204 B
C++
// RUN: %clang_cc1 -emit-llvm %s -o -
|
|
|
|
struct PrefMapElem {
|
|
virtual ~PrefMapElem();
|
|
unsigned int fPrefId;
|
|
};
|
|
|
|
int foo() {
|
|
PrefMapElem* fMap;
|
|
if (fMap[0].fPrefId == 1)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|