testcase that crashed the new CFE

llvm-svn: 26465
This commit is contained in:
Chris Lattner 2006-03-01 22:45:12 +00:00
parent 38d5e768b2
commit c652c30772
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
// 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;
}