Fix this test so that it's valid; the point is to test for the crash,

not the missing diagnostic.

llvm-svn: 51365
This commit is contained in:
Eli Friedman 2008-05-21 05:37:55 +00:00
parent b158b4a47b
commit 0ceef458b6

View File

@ -8,7 +8,7 @@ int test1() {
// PR2347
void f (unsigned int m)
{
extern int e[2][m];
int e[2][m];
e[0][0] = 0;
}