blob: b809751cd0f2ddb05cb2905adcef54edd67e020d [file] [log] [blame]
Eric Christopher16d482e2011-08-19 23:41:35 +00001// RUN: %clang_cc1 -emit-llvm %s -o -
2
3struct PrefMapElem {
4 virtual ~PrefMapElem();
5 unsigned int fPrefId;
6};
7
8int foo() {
9 PrefMapElem* fMap;
10 if (fMap[0].fPrefId == 1)
11 return 1;
12
13 return 0;
14}